[llvm] [VPlan] Make canonical IV part of the region (PR #156262)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 4 06:20:37 PST 2025
================
@@ -9346,10 +9341,10 @@ static void preparePlanForMainVectorLoop(VPlan &MainPlan, VPlan &EpiPlan) {
VPPhi *ResumePhi = nullptr;
if (ResumePhiIter == MainScalarPH->phis().end()) {
VPBuilder ScalarPHBuilder(MainScalarPH, MainScalarPH->begin());
+ Type *Ty = VPTypeAnalysis(MainPlan).inferScalarType(VectorTC);
ResumePhi = ScalarPHBuilder.createScalarPhi(
- {VectorTC,
- MainPlan.getVectorLoopRegion()->getCanonicalIV()->getStartValue()},
- {}, "vec.epilog.resume.val");
+ {VectorTC, MainPlan.getOrAddLiveIn(Constant::getNullValue(Ty))}, {},
----------------
ayalz wrote:
Could getConstantInt() be used?
https://github.com/llvm/llvm-project/pull/156262
More information about the llvm-commits
mailing list