File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -8393,6 +8393,26 @@ cc_library(
8393
8393
],
8394
8394
)
8395
8395
8396
+ cc_library (
8397
+ name = "PDLLCodeGen" ,
8398
+ srcs = glob (
8399
+ [
8400
+ "lib/Tools/PDLL/CodeGen/*.cpp" ,
8401
+ "lib/Tools/PDLL/CodeGen/*.h" ,
8402
+ ],
8403
+ ),
8404
+ hdrs = glob (["include/mlir/Tools/PDLL/CodeGen/*.h" ]),
8405
+ includes = ["include" ],
8406
+ deps = [
8407
+ ":IR" ,
8408
+ ":PDLDialect" ,
8409
+ ":PDLLAST" ,
8410
+ ":Parser" ,
8411
+ ":Support" ,
8412
+ "//llvm:Support" ,
8413
+ ],
8414
+ )
8415
+
8396
8416
cc_library (
8397
8417
name = "PDLLParser" ,
8398
8418
srcs = glob (
@@ -8417,7 +8437,9 @@ cc_binary(
8417
8437
"tools/mlir-pdll/mlir-pdll.cpp" ,
8418
8438
],
8419
8439
deps = [
8440
+ ":IR" ,
8420
8441
":PDLLAST" ,
8442
+ ":PDLLCodeGen" ,
8421
8443
":PDLLParser" ,
8422
8444
":Support" ,
8423
8445
"//llvm:Support" ,
You can’t perform that action at this time.
0 commit comments