From 9a49085a94d16524aca557c2702c5a5c731a6b4b Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Mon, 27 Oct 2025 12:31:25 -0700 Subject: [PATCH] [mlir] Remove unused "using" decls (NFC) Identified with misc-unused-using-decls. --- mlir/lib/Dialect/Tensor/IR/TensorOps.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp b/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp index ac7200294a3a6..110bfdce72ea4 100644 --- a/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp +++ b/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp @@ -41,10 +41,6 @@ using namespace mlir; using namespace mlir::tensor; -using llvm::divideCeilSigned; -using llvm::divideFloorSigned; -using llvm::mod; - /// Materialize a single constant operation from a given attribute value with /// the desired resultant type. Operation *TensorDialect::materializeConstant(OpBuilder &builder,