Skip to content

Commit 20b12fa

Browse files
committed
Fix MathTransforms library dependencies
The dependencies were set up improperly likely due to past code locations. MathTransforms shouldn't depend on VectorUtils which add a whole bunch of additional dependencies; it instead depends on the SCF dialect. Differential Revision: https://reviews.llvm.org/D149797
1 parent ef1b735 commit 20b12fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Dialect/Math/Transforms/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ add_mlir_dialect_library(MLIRMathTransforms
88

99
LINK_LIBS PUBLIC
1010
MLIRArithDialect
11-
MLIRDialectUtils
11+
MLIRDialectUtils
1212
MLIRIR
1313
MLIRMathDialect
14+
MLIRSCFDialect
1415
MLIRPass
1516
MLIRTransforms
1617
MLIRX86VectorDialect
1718
MLIRVectorDialect
18-
MLIRVectorUtils
1919
)

0 commit comments

Comments
 (0)