mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 13:46:37 +00:00
Fix after 2b8f88791502
This commit is contained in:
parent
ac9e4e9b33
commit
f84bc1ca43
@ -7238,9 +7238,11 @@ gentbl_cc_library(
|
||||
td_library(
|
||||
name = "PtrTdFiles",
|
||||
srcs = [
|
||||
"include/mlir/Dialect/Ptr/IR/MemorySpaceInterfaces.td",
|
||||
"include/mlir/Dialect/Ptr/IR/PtrAttrDefs.td",
|
||||
"include/mlir/Dialect/Ptr/IR/PtrDialect.td",
|
||||
"include/mlir/Dialect/Ptr/IR/PtrOps.td",
|
||||
"include/mlir/Dialect/Ptr/IR/PtrEnums.td",
|
||||
],
|
||||
includes = ["include"],
|
||||
deps = [
|
||||
@ -7278,6 +7280,52 @@ gentbl_cc_library(
|
||||
],
|
||||
)
|
||||
|
||||
gentbl_cc_library(
|
||||
name = "PtrOpsEnumsGen",
|
||||
tbl_outs = [
|
||||
(
|
||||
["-gen-enum-decls"],
|
||||
"include/mlir/Dialect/Ptr/IR/PtrOpsEnums.h.inc",
|
||||
),
|
||||
(
|
||||
["-gen-enum-defs"],
|
||||
"include/mlir/Dialect/Ptr/IR/PtrOpsEnums.cpp.inc",
|
||||
),
|
||||
],
|
||||
tblgen = ":mlir-tblgen",
|
||||
td_file = "include/mlir/Dialect/Ptr/IR/PtrEnums.td",
|
||||
deps = [
|
||||
":PtrTdFiles",
|
||||
],
|
||||
)
|
||||
|
||||
gentbl_cc_library(
|
||||
name = "PtrMemorySpaceInterfacesIncGen",
|
||||
tbl_outs = [
|
||||
(
|
||||
["-gen-op-interface-decls"],
|
||||
"include/mlir/Dialect/Ptr/IR/MemorySpaceInterfaces.h.inc",
|
||||
),
|
||||
(
|
||||
["-gen-op-interface-defs"],
|
||||
"include/mlir/Dialect/Ptr/IR/MemorySpaceInterfaces.cpp.inc",
|
||||
),
|
||||
(
|
||||
["-gen-attr-interface-decls"],
|
||||
"include/mlir/Dialect/Ptr/IR/MemorySpaceAttrInterfaces.h.inc",
|
||||
),
|
||||
(
|
||||
["-gen-attr-interface-defs"],
|
||||
"include/mlir/Dialect/Ptr/IR/MemorySpaceAttrInterfaces.cpp.inc",
|
||||
),
|
||||
],
|
||||
tblgen = ":mlir-tblgen",
|
||||
td_file = "include/mlir/Dialect/Ptr/IR/MemorySpaceInterfaces.td",
|
||||
deps = [
|
||||
":PtrTdFiles",
|
||||
],
|
||||
)
|
||||
|
||||
gentbl_cc_library(
|
||||
name = "PtrOpsIncGen",
|
||||
tbl_outs = [
|
||||
@ -7334,6 +7382,8 @@ cc_library(
|
||||
":InliningUtils",
|
||||
":PtrAttrsIncGen",
|
||||
":PtrDialectIncGen",
|
||||
":PtrMemorySpaceInterfacesIncGen",
|
||||
":PtrOpsEnumsGen",
|
||||
":PtrOpsIncGen",
|
||||
"//llvm:Support",
|
||||
],
|
||||
|
@ -124,6 +124,7 @@ td_library(
|
||||
"//mlir:MemorySlotInterfacesTdFiles",
|
||||
"//mlir:OpBaseTdFiles",
|
||||
"//mlir:PolynomialTdFiles",
|
||||
"//mlir:PtrTdFiles",
|
||||
"//mlir:SideEffectInterfacesTdFiles",
|
||||
],
|
||||
)
|
||||
@ -430,6 +431,7 @@ cc_library(
|
||||
"//mlir:MemorySlotInterfaces",
|
||||
"//mlir:Pass",
|
||||
"//mlir:PolynomialDialect",
|
||||
"//mlir:PtrDialect",
|
||||
"//mlir:Reducer",
|
||||
"//mlir:SideEffectInterfaces",
|
||||
"//mlir:Support",
|
||||
|
Loading…
x
Reference in New Issue
Block a user