[Mlir-commits] [mlir] [mlir][Func] Preserve attribute when converting CallOp/ReturnOp signature (PR #127772)
Mehdi Amini
llvmlistbot at llvm.org
Mon Feb 24 14:35:01 PST 2025
================
@@ -126,8 +127,9 @@ class ReturnOpTypeConversion : public OpConversionPattern<ReturnOp> {
LogicalResult
matchAndRewrite(ReturnOp op, OneToNOpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const final {
- rewriter.replaceOpWithNewOp<ReturnOp>(op,
- flattenValues(adaptor.getOperands()));
+ rewriter
+ .replaceOpWithNewOp<ReturnOp>(op, flattenValues(adaptor.getOperands()))
+ ->setAttrs(op->getAttrs());
----------------
joker-eph wrote:
@matthias-springer : that's an interesting idea, but note that this wouldn't work with most passes which don't use the greedy driver.
https://github.com/llvm/llvm-project/pull/127772
More information about the Mlir-commits
mailing list