We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcb8bb7 commit 0037eb2Copy full SHA for 0037eb2
llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
@@ -2279,9 +2279,9 @@ bool VPlanTransforms::tryAddExplicitVectorLength(
2279
// The transform updates all users of inductions to work based on EVL, instead
2280
// of the VF directly. At the moment, widened pointer inductions cannot be
2281
// updated, so bail out if the plan contains any.
2282
- bool ContainsWidenInductions =
+ bool ContainsWidenPointerInductions =
2283
any_of(Header->phis(), IsaPred<VPWidenPointerInductionRecipe>);
2284
- if (ContainsWidenInductions)
+ if (ContainsWidenPointerInductions)
2285
return false;
2286
2287
auto *CanonicalIVPHI = Plan.getCanonicalIV();
0 commit comments