[Bazel] Fixes b6e4d27 (#189473)

This fixes b6e4d27c485af711214b3dafc96fa287e2fe33f6.

Co-authored-by: Google Bazel Bot <google-bazel-bot@google.com>
This commit is contained in:
forking-google-bazel-bot[bot] 2026-03-30 13:56:50 -07:00 committed by GitHub
parent 9d3079a7a9
commit 19caff444d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

View File

@ -4418,6 +4418,7 @@ cc_library(
":LoopLikeInterface",
":MemRefDialect",
":MemorySlotInterfaces",
":MemorySlotUtils",
":ParallelCombiningOpInterface",
":SCFDeviceMappingInterfacesIncGen",
":SCFIncGen",
@ -4470,6 +4471,17 @@ cc_library(
],
)
cc_library(
name = "MemorySlotUtils",
srcs = ["lib/Interfaces/Utils/MemorySlotUtils.cpp"],
hdrs = ["include/mlir/Interfaces/Utils/MemorySlotUtils.h"],
includes = ["include"],
deps = [
":IR",
"//llvm:Support",
],
)
cc_library(
name = "DataLayoutInterfaces",
srcs = ["lib/Interfaces/DataLayoutInterfaces.cpp"],
@ -13212,6 +13224,7 @@ cc_library(
":MemRefOpsIncGen",
":MemoryAccessOpInterfacesIncGen",
":MemorySlotInterfaces",
":MemorySlotUtils",
":RuntimeVerifiableOpInterface",
":ShapedOpInterfaces",
":SideEffectInterfaces",

View File

@ -74,9 +74,11 @@ cc_test(
"//mlir:IR",
"//mlir:InferIntRangeInterface",
"//mlir:InferTypeOpInterface",
"//mlir:MemorySlotUtils",
"//mlir:Parser",
"//mlir:SideEffectInterfaces",
"//mlir:Support",
"//mlir/test:TestDialect",
"//third-party/unittest:gtest",
"//third-party/unittest:gtest_main",
],