[llvm] [VPlan] Use VPInstruction for VPScalarPHIRecipe. (NFCI) (PR #129767)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 10:45:25 PST 2025


================
@@ -3283,11 +3298,12 @@ void VPWidenPointerInductionRecipe::execute(VPTransformState &State) {
   BasicBlock *VectorPH = State.CFG.getPreheaderBBFor(this);
   PHINode *NewPointerPhi = nullptr;
   if (CurrentPart == 0) {
-    auto *IVR = cast<VPHeaderPHIRecipe>(&getParent()
-                                             ->getPlan()
-                                             ->getVectorLoopRegion()
-                                             ->getEntryBasicBlock()
-                                             ->front());
+    auto *IVR = getParent()
+                    ->getPlan()
+                    ->getVectorLoopRegion()
+                    ->getEntryBasicBlock()
+                    ->front()
+                    .getVPSingleValue();
----------------
ayalz wrote:

Independently: is there a better way to retrieve IVR?

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


More information about the llvm-commits mailing list