[Mlir-commits] [mlir] [mlir] Remove duplicated `SingleBlockImplicitTerminator` member funions (PR #65959)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Sep 11 06:06:04 PDT 2023
llvmbot wrote:
@llvm/pr-subscribers-mlir
<details>
<summary>Changes</summary>
Avoid member functions duplication caused by `SingleBlockImplicitTerminator` now implying `SingleBlock` (since 0ac21e654f194a0f7c9f5afe42e11924c546f89e).
--
Full diff: https://github.com/llvm/llvm-project/pull/65959.diff
1 Files Affected:
- (modified) mlir/include/mlir/IR/OpDefinition.h (-31)
<pre>
diff --git a/mlir/include/mlir/IR/OpDefinition.h b/mlir/include/mlir/IR/OpDefinition.h
index 84ba46f4d6f3ec1..fade95f200476f2 100644
--- a/mlir/include/mlir/IR/OpDefinition.h
+++ b/mlir/include/mlir/IR/OpDefinition.h
@@ -996,37 +996,6 @@ struct SingleBlockImplicitTerminator {
::mlir::impl::ensureRegionTerminator(region, builder, loc,
buildTerminator);
}
-
- //===------------------------------------------------------------------===//
- // Single Region Utilities
- //===------------------------------------------------------------------===//
-
- template <typename OpT, typename T = void>
- using enable_if_single_region =
- std::enable_if_t<OpT::template hasTrait<OneRegion>(), T>;
-
- /// Insert the operation into the back of the body, before the terminator.
- template <typename OpT = ConcreteType>
- enable_if_single_region<OpT> push_back(Operation *op) {
- Block *body = static_cast<SingleBlock<ConcreteType> *>(this)->getBody();
- insert(Block::iterator(body->getTerminator()), op);
- }
-
- /// Insert the operation at the given insertion point. Note: The operation
- /// is never inserted after the terminator, even if the insertion point is
- /// end().
- template <typename OpT = ConcreteType>
- enable_if_single_region<OpT> insert(Operation *insertPt, Operation *op) {
- insert(Block::iterator(insertPt), op);
- }
- template <typename OpT = ConcreteType>
- enable_if_single_region<OpT> insert(Block::iterator insertPt,
- Operation *op) {
- Block *body = static_cast<SingleBlock<ConcreteType> *>(this)->getBody();
- if (insertPt == body->end())
- insertPt = Block::iterator(body->getTerminator());
- body->getOperations().insert(insertPt, op);
- }
};
};
</pre>
</details>
https://github.com/llvm/llvm-project/pull/65959
More information about the Mlir-commits
mailing list