We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe9911 commit 2051771Copy full SHA for 2051771
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -8393,6 +8393,26 @@ cc_library(
8393
],
8394
)
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
+
8416
cc_library(
8417
name = "PDLLParser",
8418
srcs = glob(
@@ -8417,7 +8437,9 @@ cc_binary(
8437
"tools/mlir-pdll/mlir-pdll.cpp",
8438
8419
8439
deps = [
8440
8420
8441
":PDLLAST",
8442
+ ":PDLLCodeGen",
8421
8443
":PDLLParser",
8422
8444
":Support",
8423
8445
"//llvm:Support",
0 commit comments