[Mlir-commits] [mlir] [mlir][dataflow] Drop the firstIndex argument of visitNonControlFlowArguments (PR #175210)

lonely eagle llvmlistbot at llvm.org
Mon Jan 26 00:03:38 PST 2026


================
@@ -186,9 +186,9 @@ void AbstractSparseForwardDataFlowAnalysis::visitBlock(Block *block) {
     }
 
     // Otherwise, we can't reason about the data-flow.
-    return visitNonControlFlowArgumentsImpl(
-        block->getParentOp(), RegionSuccessor(block->getParent()), ValueRange(),
-        argLattices, /*firstIndex=*/0);
+    return visitNonControlFlowArgumentsImpl(block->getParentOp(),
+                                            RegionSuccessor(block->getParent()),
+                                            ValueRange(), argLattices);
----------------
linuxlonelyeagle wrote:

Thanks for pointing that out. It was a copy-paste error when I was reverting the code.

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


More information about the Mlir-commits mailing list