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

Matthias Springer llvmlistbot at llvm.org
Sun Jan 25 23:47:31 PST 2026


================
@@ -215,8 +215,8 @@ class AbstractSparseForwardDataFlowAnalysis : public DataFlowAnalysis {
   /// of loops).
   virtual void visitNonControlFlowArgumentsImpl(
       Operation *op, const RegionSuccessor &successor,
-      ValueRange successorInputs, ArrayRef<AbstractSparseLattice *> argLattices,
-      unsigned firstIndex) = 0;
+      ValueRange noSuccessorInputs,
+      ArrayRef<AbstractSparseLattice *> argLattices) = 0;
----------------
matthias-springer wrote:

`argLattices` -> `nonSuccessorInputLattices`

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


More information about the Mlir-commits mailing list