[PATCH] D146589: Add missing dependency for TransformDialect

Anlun Xu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 21 15:23:38 PDT 2023


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc5f6339c126c: Add missing dependency for TransformDialect (authored by anlunx).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D146589/new/

https://reviews.llvm.org/D146589

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,6 +9318,7 @@
     td_file = "include/mlir/Dialect/Transform/IR/TransformOps.td",
     deps = [
         ":CallInterfacesTdFiles",
+        ":FunctionInterfacesTdFiles",
         ":TransformDialectTdFiles",
     ],
 )
@@ -9345,6 +9346,7 @@
     srcs = glob(["lib/Dialect/Transform/IR/*.cpp"]),
     hdrs = glob(["include/mlir/Dialect/Transform/IR/*.h"]),
     deps = [
+        ":Analysis",
         ":CallOpInterfaces",
         ":ControlFlowInterfaces",
         ":IR",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146589.507160.patch
Type: text/x-patch
Size: 713 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230321/098d9098/attachment.bin>


More information about the llvm-commits mailing list