File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
include/flang/Optimizer/Dialect Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -2822,9 +2822,6 @@ def fir_DispatchTableOp : fir_Op<"dispatch_table",
2822
2822
];
2823
2823
2824
2824
let extraClassDeclaration = [{
2825
- /// Append a dispatch table entry to the table.
2826
- void appendTableEntry(mlir::Operation *op);
2827
-
2828
2825
static constexpr llvm::StringRef getParentAttrNameStr() { return "parent"; }
2829
2826
static constexpr llvm::StringRef getExtendsKeyword() { return "extends"; }
2830
2827
Original file line number Diff line number Diff line change @@ -1083,12 +1083,6 @@ mlir::FunctionType fir::DispatchOp::getFunctionType() {
1083
1083
// DispatchTableOp
1084
1084
// ===----------------------------------------------------------------------===//
1085
1085
1086
- void fir::DispatchTableOp::appendTableEntry (mlir::Operation *op) {
1087
- assert (mlir::isa<fir::DTEntryOp>(*op) && " operation must be a DTEntryOp" );
1088
- auto &block = getBlock ();
1089
- block.getOperations ().insert (block.end (), op);
1090
- }
1091
-
1092
1086
mlir::ParseResult fir::DispatchTableOp::parse (mlir::OpAsmParser &parser,
1093
1087
mlir::OperationState &result) {
1094
1088
// Parse the name as a symbol reference attribute.
You can’t perform that action at this time.
0 commit comments