Skip to content

Commit 179d2ef

Browse files
committed
[bazel][mlir] Port ca9a335
1 parent c5a13e2 commit 179d2ef

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1837,6 +1837,18 @@ cc_library(
18371837
],
18381838
)
18391839

1840+
cc_library(
1841+
name = "ArmSMEUtils",
1842+
srcs = glob(["lib/Dialect/ArmSME/Utils/*.cpp"]),
1843+
hdrs = glob(["include/mlir/Dialect/ArmSME/Utils/*.h"]),
1844+
includes = ["include"],
1845+
deps = [
1846+
":ArmSMEDialect",
1847+
":IR",
1848+
":Dialect",
1849+
],
1850+
)
1851+
18401852
cc_library(
18411853
name = "ArmSMETransforms",
18421854
srcs = glob(["lib/Dialect/ArmSME/Transforms/*.cpp"]),
@@ -1845,6 +1857,7 @@ cc_library(
18451857
deps = [
18461858
":ArithDialect",
18471859
":ArmSMEDialect",
1860+
":ArmSMEUtils",
18481861
":ArmSMETransformsPassIncGen",
18491862
":FuncDialect",
18501863
":IR",
@@ -9899,6 +9912,7 @@ cc_library(
98999912
includes = ["include"],
99009913
deps = [
99019914
":ArmSMEDialect",
9915+
":ArmSMEUtils",
99029916
":ConversionPassIncGen",
99039917
":IR",
99049918
":Pass",

0 commit comments

Comments
 (0)