From 51c8c1e1e5dbda57b645b43b201b843eabca3e5f Mon Sep 17 00:00:00 2001 From: yijia1212 Date: Tue, 21 Mar 2023 14:40:17 -0700 Subject: [PATCH] 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 --- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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",