Skip to content

Commit cc38cff

Browse files
committed
[mlir][bazel] Fix BUILD after 9f7fff7.
1 parent 54952e9 commit cc38cff

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3890,6 +3890,7 @@ cc_library(
38903890
":AMDGPUToROCDL",
38913891
":AffineToStandard",
38923892
":ArithToAMDGPU",
3893+
":ArithToArmSME",
38933894
":ArithToLLVM",
38943895
":ArithToSPIRV",
38953896
":ArmNeon2dToIntr",
@@ -8041,6 +8042,27 @@ cc_library(
80418042
],
80428043
)
80438044

8045+
cc_library(
8046+
name = "ArithToArmSME",
8047+
srcs = glob([
8048+
"lib/Conversion/ArithToArmSME/*.cpp",
8049+
"lib/Conversion/ArithToArmSME/*.h",
8050+
]),
8051+
hdrs = glob([
8052+
"include/mlir/Conversion/ArithToArmSME/*.h",
8053+
]),
8054+
includes = ["include"],
8055+
deps = [
8056+
":ArmSMEDialect",
8057+
":ArithDialect",
8058+
":ConversionPassIncGen",
8059+
":IR",
8060+
":Pass",
8061+
":Transforms",
8062+
"//llvm:Support",
8063+
],
8064+
)
8065+
80448066
cc_library(
80458067
name = "ArithToLLVM",
80468068
srcs = glob(["lib/Conversion/ArithToLLVM/*.cpp"]),

0 commit comments

Comments
 (0)