[llvm] [bazel][mlir] Add missing dep for X86Vector (PR #135069)

Jakub Kuderski via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 9 12:04:56 PDT 2025


https://github.com/kuhar created https://github.com/llvm/llvm-project/pull/135069

Follow up after https://github.com/llvm/llvm-project/pull/133692

>From 4396459b99a6043639f885655b0c585f95f356c8 Mon Sep 17 00:00:00 2001
From: Jakub Kuderski <jakub at nod-labs.com>
Date: Wed, 9 Apr 2025 15:02:42 -0400
Subject: [PATCH] [bazel][mlir] Add missing dep for X86Vector

Follow up after https://github.com/llvm/llvm-project/pull/133692
---
 utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index e69fc0e50a5b3..75b5b796addcc 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2237,7 +2237,10 @@ gentbl_cc_library(
 
 td_library(
     name = "X86VectorTdFiles",
-    srcs = ["include/mlir/Dialect/X86Vector/X86Vector.td"],
+    srcs = [
+        "include/mlir/Dialect/X86Vector/X86Vector.td",
+        "include/mlir/Dialect/X86Vector/X86VectorInterfaces.td",
+    ],
     includes = ["include"],
     deps = [
         ":InferTypeOpInterfaceTdFiles",



More information about the llvm-commits mailing list