[clang] [flang] [mlir] [mlir][Interfaces] Split successor inputs from region successor (PR #175815)
lonely eagle via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 14 10:02:35 PST 2026
================
@@ -316,19 +315,17 @@ void AbstractSparseForwardDataFlowAnalysis::visitRegionSuccessors(
if (!inputs.empty())
firstIndex = cast<OpResult>(inputs.front()).getResultNumber();
visitNonControlFlowArgumentsImpl(
- branch,
- RegionSuccessor::parent(
- branch->getResults().slice(firstIndex, inputs.size())),
- lattices, firstIndex);
+ branch, RegionSuccessor::parent(),
+ branch->getResults().slice(firstIndex, inputs.size()), lattices,
----------------
linuxlonelyeagle wrote:
I see, thanks. I've approved it.😉
https://github.com/llvm/llvm-project/pull/175815
More information about the cfe-commits
mailing list