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

Matthias Springer llvmlistbot at llvm.org
Mon Jan 26 00:55:41 PST 2026


================
@@ -66,11 +66,10 @@ class IntegerRangeAnalysis
   /// function calls `InferIntRangeInterface` to provide values for block
   /// arguments or tries to reduce the range on loop induction variables with
   /// known bounds.
-  void
-  visitNonControlFlowArguments(Operation *op, const RegionSuccessor &successor,
-                               ValueRange successorInputs,
-                               ArrayRef<IntegerValueRangeLattice *> argLattices,
-                               unsigned firstIndex) override;
+  void visitNonControlFlowArguments(
+      Operation *op, const RegionSuccessor &successor,
+      ValueRange nonSuccessorInputs,
+      ArrayRef<IntegerValueRangeLattice *> argLattices) override;
----------------
matthias-springer wrote:

`argLattices` -> `nonSuccessorInputLattices`

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


More information about the Mlir-commits mailing list