Skip to content

Commit 0037eb2

Browse files
committed
Rename variable
1 parent fcb8bb7 commit 0037eb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2279,9 +2279,9 @@ bool VPlanTransforms::tryAddExplicitVectorLength(
22792279
// The transform updates all users of inductions to work based on EVL, instead
22802280
// of the VF directly. At the moment, widened pointer inductions cannot be
22812281
// updated, so bail out if the plan contains any.
2282-
bool ContainsWidenInductions =
2282+
bool ContainsWidenPointerInductions =
22832283
any_of(Header->phis(), IsaPred<VPWidenPointerInductionRecipe>);
2284-
if (ContainsWidenInductions)
2284+
if (ContainsWidenPointerInductions)
22852285
return false;
22862286

22872287
auto *CanonicalIVPHI = Plan.getCanonicalIV();

0 commit comments

Comments
 (0)