[Mlir-commits] [mlir] [mlir][dataflow] Drop the firstIndex argument of visitNonControlFlowArguments (PR #175210)
lonely eagle
llvmlistbot at llvm.org
Mon Jan 26 01:51:49 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 nonSuccessorInputs,
+ ArrayRef<AbstractSparseLattice *> nonSuccessorInputLattices) = 0;
----------------
linuxlonelyeagle wrote:
> Are the lattices here actually the non-successor-input lattices or all lattices? Can you double check?
* RegionBranchOp
nonSuccessorInputLattices
* entry block argument which parentOp is not RegionBranchOp
all arguments lattices
https://github.com/llvm/llvm-project/pull/175210
More information about the Mlir-commits
mailing list