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(
2103
2103
],
2104
2104
)
2105
2105
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
+
2106
2122
cc_library (
2107
2123
name = "ArmSVETransforms" ,
2108
2124
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" ]) ,
2110
2126
includes = ["include" ],
2111
2127
deps = [
2112
2128
":ArmSVEDialect" ,
2129
+ ":ArmSVEPassIncGen" ,
2113
2130
":DialectUtils" ,
2114
2131
":FuncDialect" ,
2115
2132
":IR" ,
2116
2133
":LLVMCommonConversion" ,
2117
2134
":LLVMDialect" ,
2135
+ ":MemRefDialect" ,
2136
+ ":Pass" ,
2137
+ ":TransformUtils" ,
2118
2138
":VectorDialect" ,
2119
2139
],
2120
2140
)
You can’t perform that action at this time.
0 commit comments