[llvm] [VPlan] Use VPlan predecessors in VPWidenPHIRecipe (NFC). (PR #126388)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 12 12:17:04 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();
----------------
fhahn wrote:

Done thanks

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


More information about the llvm-commits mailing list