[PATCH] D146566: Fix dep error for transform dialect in bazel
Anlun Xu via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 21 14:41:26 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG51c8c1e1e5db: Fix dep error for transform dialect in bazel (authored by yijia1212, committed by anlunx).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146566/new/
https://reviews.llvm.org/D146566
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -9318,7 +9318,7 @@
td_file = "include/mlir/Dialect/Transform/IR/TransformOps.td",
deps = [
":CallInterfacesTdFiles",
- ":TransformDialectTdFiles"
+ ":TransformDialectTdFiles",
],
)
@@ -9345,7 +9345,7 @@
srcs = glob(["lib/Dialect/Transform/IR/*.cpp"]),
hdrs = glob(["include/mlir/Dialect/Transform/IR/*.h"]),
deps = [
- ":CallInterfaces",
+ ":CallOpInterfaces",
":ControlFlowInterfaces",
":IR",
":PDLDialect",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146566.507128.patch
Type: text/x-patch
Size: 742 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230321/60664f51/attachment.bin>
More information about the llvm-commits
mailing list