Skip to content

Commit a116f0e

Browse files
committed
[bazel] Port test parts of cb6ff74
1 parent 1c7607e commit a116f0e

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@ cc_library(
19331933

19341934
cc_library(
19351935
name = "ArmNeonTransforms",
1936-
srcs = ["lib/Dialect/ArmNeon/Transforms/LowerVectorToArmNeon.cpp"],
1936+
srcs = glob(["lib/Dialect/ArmNeon/Transforms/*.cpp"]),
19371937
hdrs = ["include/mlir/Dialect/ArmNeon/Transforms.h"],
19381938
includes = ["include"],
19391939
deps = [
@@ -9334,6 +9334,7 @@ cc_binary(
93349334
"//mlir/test:TestAffine",
93359335
"//mlir/test:TestAnalysis",
93369336
"//mlir/test:TestArith",
9337+
"//mlir/test:TestArmNeon",
93379338
"//mlir/test:TestArmSME",
93389339
"//mlir/test:TestBufferization",
93399340
"//mlir/test:TestControlFlow",

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -889,6 +889,21 @@ cc_library(
889889
],
890890
)
891891

892+
cc_library(
893+
name = "TestArmNeon",
894+
srcs = glob(["lib/Dialect/ArmNeon/*.cpp"]),
895+
includes = ["lib/Dialect/Test"],
896+
deps = [
897+
"//mlir:ArmNeonDialect",
898+
"//mlir:ArmNeonTransforms",
899+
"//mlir:FuncDialect",
900+
"//mlir:IR",
901+
"//mlir:Pass",
902+
"//mlir:Support",
903+
"//mlir:Transforms",
904+
],
905+
)
906+
892907
cc_library(
893908
name = "TestArmSME",
894909
srcs = glob(["lib/Dialect/ArmSME/*.cpp"]),

0 commit comments

Comments
 (0)