[llvm] [mlir][bazel] Fix build after #184116 (PR #185019)

Ingo Müller via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 6 07:07:42 PST 2026


https://github.com/ingomueller-net created https://github.com/llvm/llvm-project/pull/185019

This PR adds a dependency to the `BUILD.bazel` files that is missing after #184116.

>From 26afedd7197d9bcca9fb90dd83bd166b429bba32 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ingo=20M=C3=BCller?= <ingomueller at google.com>
Date: Fri, 6 Mar 2026 15:06:11 +0000
Subject: [PATCH] [mlir][bazel] Fix build after #184116
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This PR adds a dependency to the `BUILD.bazel` files that is missing
after #184116.

Signed-off-by: Ingo Müller <ingomueller at google.com>
---
 utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 1 +
 1 file changed, 1 insertion(+)

diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index a8455a61c95bd..1a1af21949756 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -4525,6 +4525,7 @@ cc_library(
         ":FunctionInterfaces",
         ":IR",
         ":LoopLikeInterfaceIncGen",
+        ":ControlFlowInterfaces",
         "//llvm:Support",
     ],
 )



More information about the llvm-commits mailing list