From 3d276e4c7b13ce8d247783993bbe93e6775aa068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20M=C3=BCller?= Date: Mon, 24 Nov 2025 11:04:04 +0000 Subject: [PATCH] [mlir:x86vector:transform] Fix bazel build (again) after #168074. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a second attempt to fix the bazel build (after the first in #169294, which was accidentally merged before CI passed). In the first attempt, not all bazel dependencies had been added; this PR should add them all and make CI pass. Signed-off-by: Ingo Müller --- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel index b7fe0fa898c21..6d2eedbfe2415 100644 --- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel @@ -2610,8 +2610,13 @@ cc_library( hdrs = glob(["include/mlir/Dialect/X86Vector/TransformOps/*.h"]), includes = ["include"], deps = [ + ":IR", + ":LLVMCommonConversion", + ":LLVMDialect", ":TransformDialect", + ":TransformDialectInterfaces", ":VectorDialect", + ":X86VectorDialect", ":X86VectorTransformOpsIncGen", ":X86VectorTransforms", ], @@ -2628,6 +2633,9 @@ cc_library( ":LLVMCommonConversion", ":LLVMDialect", ":LinalgDialect", + ":LinalgInterfaces", + ":Pass", + ":TransformUtils", ":VectorDialect", ":VectorUtils", ":X86VectorDialect",