[llvm] [VPlan] Use VPlan predecessors in VPWidenPHIRecipe (NFC). (PR #126388)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 9 02:16:23 PST 2025
================
@@ -3577,6 +3577,21 @@ void VPReductionPHIRecipe::print(raw_ostream &O, const Twine &Indent,
}
#endif
+VPBasicBlock *VPWidenPHIRecipe::getIncomingBlock(unsigned I) {
+ VPBasicBlock *Parent = getParent();
+ VPBlockBase *Pred = nullptr;
+ if (Parent->getNumPredecessors() == 0) {
+ auto *R = Parent->getParent();
+ assert(R && R->getEntry() == Parent);
+ assert(I < 2);
----------------
ayalz wrote:
Error messages.
VPlans holding VPWidenPHIRecipes have only loop regions, which have a single predecessor - the preheader, even when nested?
Worth asserting R is not a replicating region.
https://github.com/llvm/llvm-project/pull/126388
More information about the llvm-commits
mailing list