File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -2103,18 +2103,38 @@ cc_library(
21032103 ],
21042104)
21052105
2106+ gentbl_cc_library (
2107+ name = "ArmSVEPassIncGen" ,
2108+ tbl_outs = [
2109+ (
2110+ [
2111+ "-gen-pass-decls" ,
2112+ "-name=ArmSVE" ,
2113+ ],
2114+ "include/mlir/Dialect/ArmSVE/Transforms/Passes.h.inc" ,
2115+ ),
2116+ ],
2117+ tblgen = ":mlir-tblgen" ,
2118+ td_file = "include/mlir/Dialect/ArmSVE/Transforms/Passes.td" ,
2119+ deps = [":PassBaseTdFiles" ],
2120+ )
2121+
21062122cc_library (
21072123 name = "ArmSVETransforms" ,
21082124 srcs = glob (["lib/Dialect/ArmSVE/Transforms/*.cpp" ]),
2109- hdrs = ["include/mlir/Dialect/ArmSVE/Transforms/Transforms .h" ],
2125+ hdrs = glob ( ["include/mlir/Dialect/ArmSVE/Transforms/* .h" ]) ,
21102126 includes = ["include" ],
21112127 deps = [
21122128 ":ArmSVEDialect" ,
2129+ ":ArmSVEPassIncGen" ,
21132130 ":DialectUtils" ,
21142131 ":FuncDialect" ,
21152132 ":IR" ,
21162133 ":LLVMCommonConversion" ,
21172134 ":LLVMDialect" ,
2135+ ":MemRefDialect" ,
2136+ ":Pass" ,
2137+ ":TransformUtils" ,
21182138 ":VectorDialect" ,
21192139 ],
21202140)
You can’t perform that action at this time.
0 commit comments