From 3a24dd282c664141e324be34bfff1d2d72fd405a Mon Sep 17 00:00:00 2001 From: Chenguang Wang Date: Thu, 6 Nov 2025 22:21:02 -0800 Subject: [PATCH] [bazel] Add missing deps for AlignmentAttrInterface.h Commit 4a7d3df added `#include "AlignmentAttrInterface.h"` in three places: MemRef.h, SPIRVOps.h, and VectorOps.h; my previous bazel fix 7e9db96 only covered MemRef.h, but not the other two. --- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel index 3a802311688be..3b1ef64ab0503 100644 --- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel @@ -4905,6 +4905,7 @@ cc_library( includes = ["include"], deps = [ ":AffineDialect", + ":AlignmentAttrInterface", ":Analysis", ":ArithDialect", ":ArithUtils", @@ -6979,6 +6980,7 @@ cc_library( ]), includes = ["include"], deps = [ + ":AlignmentAttrInterface", ":BytecodeOpInterface", ":CallOpInterfaces", ":CommonFolders",