aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJordan Rupprecht <rupprecht@google.com>2025-09-23 22:14:06 -0500
committerGitHub <noreply@github.com>2025-09-24 03:14:06 +0000
commit816970ba740085031058e6f5b8046e08953e6843 (patch)
tree9b5576fd0cc8afa70c97032dc7d8f0e27bc6581f /utils
parenta664e7599390a5bf79cf8e45551774ec83444205 (diff)
downloadllvm-816970ba740085031058e6f5b8046e08953e6843.tar.gz
llvm-816970ba740085031058e6f5b8046e08953e6843.tar.bz2
llvm-816970ba740085031058e6f5b8046e08953e6843.zip
[bazel][mlir][Python] Port #159926: move PDLPatternMatch.h.inc (#160432)
``` external/llvm-project/mlir/lib/CAPI/Transforms/Rewrite.cpp:17:10: error: use of private header from outside its module: 'mlir/IR/PDLPatternMatch.h.inc' [-Wprivate-header] 17 | #include "mlir/IR/PDLPatternMatch.h.inc" | ^ ```
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/mlir/BUILD.bazel2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 46ff0acb547d..af4592de6c9e 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -367,7 +367,6 @@ cc_library(
"include/mlir/Bytecode/*.h",
]) + [
"include/mlir/IR/OpAsmOpInterface.h.inc",
- "include/mlir/IR/PDLPatternMatch.h.inc",
"include/mlir/Interfaces/DataLayoutInterfaces.h",
"include/mlir/Interfaces/InferIntRangeInterface.h",
"include/mlir/Interfaces/SideEffectInterfaces.h",
@@ -375,6 +374,7 @@ cc_library(
hdrs = glob([
"include/mlir/IR/*.h",
]) + [
+ "include/mlir/IR/PDLPatternMatch.h.inc",
"include/mlir/Interfaces/CallInterfaces.h",
"include/mlir/Interfaces/FoldInterfaces.h",
],