File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -1933,7 +1933,7 @@ cc_library(
1933
1933
1934
1934
cc_library (
1935
1935
name = "ArmNeonTransforms" ,
1936
- srcs = ["lib/Dialect/ArmNeon/Transforms/LowerVectorToArmNeon .cpp" ],
1936
+ srcs = glob ( ["lib/Dialect/ArmNeon/Transforms/* .cpp" ]) ,
1937
1937
hdrs = ["include/mlir/Dialect/ArmNeon/Transforms.h" ],
1938
1938
includes = ["include" ],
1939
1939
deps = [
@@ -9334,6 +9334,7 @@ cc_binary(
9334
9334
"//mlir/test:TestAffine" ,
9335
9335
"//mlir/test:TestAnalysis" ,
9336
9336
"//mlir/test:TestArith" ,
9337
+ "//mlir/test:TestArmNeon" ,
9337
9338
"//mlir/test:TestArmSME" ,
9338
9339
"//mlir/test:TestBufferization" ,
9339
9340
"//mlir/test:TestControlFlow" ,
Original file line number Diff line number Diff line change @@ -889,6 +889,21 @@ cc_library(
889
889
],
890
890
)
891
891
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
+
892
907
cc_library (
893
908
name = "TestArmSME" ,
894
909
srcs = glob (["lib/Dialect/ArmSME/*.cpp" ]),
You can’t perform that action at this time.
0 commit comments