[Mlir-commits] [mlir] [mlir][Interfaces] Add `mustProgress` interface method + folding pattern (PR #179039)

Matthias Springer llvmlistbot at llvm.org
Sat Jan 31 06:32:32 PST 2026


================
@@ -49,8 +49,9 @@ struct ForLoopLoweringPattern : public OpRewritePattern<ForOp> {
     SmallVector<Value> initArgs;
     initArgs.push_back(forOp.getLowerBound());
     llvm::append_range(initArgs, forOp.getInitArgs());
-    auto whileOp = WhileOp::create(rewriter, forOp.getLoc(), lcvTypes, initArgs,
----------------
matthias-springer wrote:

I had to deactivate this auto-generated builder due to ambiguous function resolution.

https://github.com/llvm/llvm-project/pull/179039


More information about the Mlir-commits mailing list