[llvm] [bazel] Add missing deps in {Arith, DLTI}DialectTdFiles (PR #105091)
Chenguang Wang via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 20 09:38:50 PDT 2024
https://github.com/wecing created https://github.com/llvm/llvm-project/pull/105091
None
>From 19e69984852305d5ffa17e665ac281817e4ae1ec Mon Sep 17 00:00:00 2001
From: Chenguang Wang <chenguangwang at google.com>
Date: Tue, 20 Aug 2024 09:35:21 -0700
Subject: [PATCH] [bazel] Add missing deps in {Arith,DLTI}DialectTdFiles
---
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index e697db26d763c9..4b95221e8587da 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -12776,6 +12776,7 @@ td_library(
":ArithOpsInterfacesTdFiles",
":BuiltinDialectTdFiles",
":CastInterfacesTdFiles",
+ ":ControlFlowInterfacesTdFiles",
":InferIntRangeInterfaceTdFiles",
":InferTypeOpInterfaceTdFiles",
":OpBaseTdFiles",
@@ -13995,7 +13996,10 @@ td_library(
"include/mlir/Dialect/DLTI/DLTIBase.td",
],
includes = ["include"],
- deps = [":OpBaseTdFiles"],
+ deps = [
+ ":DataLayoutInterfacesTdFiles",
+ ":OpBaseTdFiles",
+ ],
)
gentbl_cc_library(
More information about the llvm-commits
mailing list