[Mlir-commits] [mlir] [mlir][transform] Plumb a simplified form of AffineMin folding into t… (PR #145170)

Nicolas Vasilache llvmlistbot at llvm.org
Mon Jun 23 03:04:39 PDT 2025


================
@@ -3024,7 +3095,8 @@ void AffineIfOp::build(OpBuilder &builder, OperationState &result,
 /// `set` by composing the maps of such affine.apply ops with the integer
 /// set constraints.
 static void composeSetAndOperands(IntegerSet &set,
-                                  SmallVectorImpl<Value> &operands) {
+                                  SmallVectorImpl<Value> &operands,
+                                  bool composeAffineMin) {
----------------
nicolasvasilache wrote:

I used compiler errors to guide me to all the places I needed to fix to properly plug the bool in, I can clean up now, thanks for catching!

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


More information about the Mlir-commits mailing list