Skip to content

Commit 07e407d

Browse files
dklimkinAlexisPerry
authored andcommitted
Fix bazel build past abd9534 (llvm#96143)
1 parent 2edc49b commit 07e407d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13783,12 +13783,39 @@ gentbl_cc_library(
1378313783
deps = [":OpBaseTdFiles"],
1378413784
)
1378513785

13786+
gentbl_cc_library(
13787+
name = "DLTIAttrsIncGen",
13788+
tbl_outs = [
13789+
(
13790+
[
13791+
"-gen-attrdef-decls",
13792+
"-dialect=dlti",
13793+
],
13794+
"include/mlir/Dialect/DLTI/DLTIAttrs.h.inc",
13795+
),
13796+
(
13797+
[
13798+
"-gen-attrdef-defs",
13799+
"-dialect=dlti",
13800+
],
13801+
"include/mlir/Dialect/DLTI/DLTIAttrs.cpp.inc",
13802+
),
13803+
],
13804+
tblgen = ":mlir-tblgen",
13805+
td_file = "include/mlir/Dialect/DLTI/DLTIAttrs.td",
13806+
deps = [
13807+
":AttrTdFiles",
13808+
":DLTIDialectTdFiles",
13809+
],
13810+
)
13811+
1378613812
cc_library(
1378713813
name = "DLTIDialect",
1378813814
srcs = glob(["lib/Dialect/DLTI/*.cpp"]),
1378913815
hdrs = glob(["include/mlir/Dialect/DLTI/*.h"]),
1379013816
includes = ["include"],
1379113817
deps = [
13818+
":DLTIAttrsIncGen",
1379213819
":DLTIBaseIncGen",
1379313820
":DataLayoutInterfaces",
1379413821
":IR",

0 commit comments

Comments
 (0)