Skip to content

Commit eb420fd

Browse files
authored
[mlir][bzl] Fix missing dep (#161126)
Flagged with `-Wprivate-header`.
1 parent 23d3caf commit eb420fd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6091,6 +6091,7 @@ cc_library(
60916091
":DialectUtils",
60926092
":GPUDialect",
60936093
":IR",
6094+
":InferIntRangeInterface",
60946095
":LLVMDialect",
60956096
":NVVMOpsIncGen",
60966097
":NVVMRequiresSMTraitsIncGen",
@@ -6295,6 +6296,7 @@ cc_library(
62956296
":BytecodeOpInterface",
62966297
":GPUDialect",
62976298
":IR",
6299+
":InferIntRangeInterface",
62986300
":LLVMDialect",
62996301
":ROCDLOpsIncGen",
63006302
":SideEffectInterfaces",
@@ -6685,6 +6687,7 @@ cc_library(
66856687
":IR",
66866688
":InferTypeOpInterface",
66876689
":SMTIncGen",
6690+
":SideEffectInterfaces",
66886691
":Support",
66896692
"//llvm:Support",
66906693
],
@@ -11831,6 +11834,7 @@ cc_library(
1183111834
srcs = glob(["lib/Dialect/Transform/PDLExtension/*.cpp"]),
1183211835
hdrs = glob(["include/mlir/Dialect/Transform/PDLExtension/*.h"]),
1183311836
deps = [
11837+
":BytecodeOpInterface",
1183411838
":IR",
1183511839
":PDLDialect",
1183611840
":PDLInterpDialect",
@@ -11945,6 +11949,7 @@ cc_library(
1194511949
srcs = glob(["lib/Dialect/Transform/IRDLExtension/*.cpp"]),
1194611950
hdrs = glob(["include/mlir/Dialect/Transform/IRDLExtension/*.h"]),
1194711951
deps = [
11952+
":BytecodeOpInterface",
1194811953
":IR",
1194911954
":IRDLDialect",
1195011955
":IRDLInterfacesIncGen",
@@ -11986,7 +11991,9 @@ cc_library(
1198611991
srcs = glob(["lib/Dialect/Transform/DebugExtension/*.cpp"]),
1198711992
hdrs = glob(["include/mlir/Dialect/Transform/DebugExtension/*.h"]),
1198811993
deps = [
11994+
":BytecodeOpInterface",
1198911995
":IR",
11996+
":SideEffectInterfaces",
1199011997
":Support",
1199111998
":TransformDebugExtensionOpsIncGen",
1199211999
":TransformDialect",
@@ -12023,6 +12030,7 @@ cc_library(
1202312030
srcs = glob(["lib/Dialect/Transform/LoopExtension/*.cpp"]),
1202412031
hdrs = glob(["include/mlir/Dialect/Transform/LoopExtension/*.h"]),
1202512032
deps = [
12033+
":BytecodeOpInterface",
1202612034
":IR",
1202712035
":LoopLikeInterface",
1202812036
":Rewrite",
@@ -13071,6 +13079,7 @@ cc_library(
1307113079
":MPIOpsIncGen",
1307213080
":MPITypesIncGen",
1307313081
":MemRefDialect",
13082+
":SideEffectInterfaces",
1307413083
"//llvm:Support",
1307513084
],
1307613085
)

0 commit comments

Comments
 (0)