From: yijia1212 Date: Tue, 21 Mar 2023 21:40:17 +0000 (-0700) Subject: Fix dep error for transform dialect in bazel X-Git-Tag: upstream/17.0.6~14069 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51c8c1e1e5dbda57b645b43b201b843eabca3e5f;p=platform%2Fupstream%2Fllvm.git Fix dep error for transform dialect in bazel Fix dep error for transform dialect in bazel Reviewed By: anlunx Differential Revision: https://reviews.llvm.org/D146566 --- diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel index 99a8653d8147..b739ead77bf2 100644 --- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel @@ -9318,7 +9318,7 @@ gentbl_cc_library( td_file = "include/mlir/Dialect/Transform/IR/TransformOps.td", deps = [ ":CallInterfacesTdFiles", - ":TransformDialectTdFiles" + ":TransformDialectTdFiles", ], ) @@ -9345,7 +9345,7 @@ cc_library( srcs = glob(["lib/Dialect/Transform/IR/*.cpp"]), hdrs = glob(["include/mlir/Dialect/Transform/IR/*.h"]), deps = [ - ":CallInterfaces", + ":CallOpInterfaces", ":ControlFlowInterfaces", ":IR", ":PDLDialect",