Skip to content

Commit 68342ed

Browse files
authored
[mlir][bazel] Fix for 513cdb8. (#85617)
Follow-up from #85604, this change also fixes the ArithDialect target.
1 parent 6854f6f commit 68342ed

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12620,10 +12620,13 @@ gentbl_cc_library(
1262012620
cc_library(
1262112621
name = "ArithDialect",
1262212622
srcs = [
12623+
"include/mlir/Interfaces/ValueBoundsOpInterface.h",
1262312624
"lib/Dialect/Arith/IR/ArithDialect.cpp",
1262412625
"lib/Dialect/Arith/IR/ArithOps.cpp",
1262512626
"lib/Dialect/Arith/IR/InferIntRangeInterfaceImpls.cpp",
12626-
],
12627+
] + glob([
12628+
"include/mlir/Analysis/**/*.h",
12629+
]),
1262712630
hdrs = [
1262812631
"include/mlir/Dialect/Arith/IR/Arith.h",
1262912632
],
@@ -12636,14 +12639,18 @@ cc_library(
1263612639
":BufferizationInterfaces",
1263712640
":CastInterfaces",
1263812641
":CommonFolders",
12642+
":ControlFlowInterfaces",
1263912643
":ConvertToLLVMInterface",
12644+
":DestinationStyleOpInterface",
1264012645
":IR",
1264112646
":InferIntRangeCommon",
1264212647
":InferIntRangeInterface",
1264312648
":InferTypeOpInterface",
1264412649
":InliningUtils",
12650+
":Pass",
1264512651
":Support",
1264612652
":UBDialect",
12653+
":ValueBoundsOpInterfaceIncGen",
1264712654
":VectorInterfaces",
1264812655
"//llvm:Support",
1264912656
],

0 commit comments

Comments
 (0)