aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/bazel/llvm-project-overlay/mlir/BUILD.bazel1
-rw-r--r--utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel35
2 files changed, 36 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 274fa87..354bbb2a 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -6188,6 +6188,7 @@ cc_binary(
"//mlir/test:TestLinalg",
"//mlir/test:TestMath",
"//mlir/test:TestMemRef",
+ "//mlir/test:TestPDLL",
"//mlir/test:TestPass",
"//mlir/test:TestReducer",
"//mlir/test:TestRewrite",
diff --git a/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
index 1e4707f..8768eed8 100644
--- a/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
@@ -626,3 +626,38 @@ cc_library(
"//mlir:Transforms",
],
)
+
+gentbl_cc_library(
+ name = "TestPDLLPatternsIncGen",
+ includes = ["lib/Dialect/Test"],
+ strip_include_prefix = "lib",
+ tbl_outs = [
+ (
+ ["-x=cpp"],
+ "lib/Tools/PDLL/TestPDLLPatterns.h.inc",
+ ),
+ ],
+ tblgen = "//mlir:mlir-pdll",
+ td_file = "lib/Tools/PDLL/TestPDLL.pdll",
+ deps = [
+ ":TestDialect",
+ ":TestOpTdFiles",
+ ],
+)
+
+cc_library(
+ name = "TestPDLL",
+ srcs = ["lib/Tools/PDLL/TestPDLL.cpp"],
+ includes = ["lib/Tools/PDLL"],
+ deps = [
+ ":TestDialect",
+ ":TestPDLLPatternsIncGen",
+ "//mlir:IR",
+ "//mlir:PDLDialect",
+ "//mlir:PDLInterpDialect",
+ "//mlir:Parser",
+ "//mlir:Pass",
+ "//mlir:Support",
+ "//mlir:TransformUtils",
+ ],
+)