Skip to content

Commit ecb3fa5

Browse files
committed
Rename method
1 parent 61e4aec commit ecb3fa5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2696,9 +2696,8 @@ expandVPWidenIntOrFpInduction(VPWidenIntOrFpInductionRecipe *WidenIVR,
26962696
/// EMIT %ptr.ind = ptradd %pointer.phi, %vf
26972697
/// EMIT branch-on-count ...
26982698
/// }
2699-
static void
2700-
expandVPWidenPointerInductionRecipe(VPWidenPointerInductionRecipe *R,
2701-
VPTypeAnalysis &TypeInfo) {
2699+
static void expandVPWidenPointerInduction(VPWidenPointerInductionRecipe *R,
2700+
VPTypeAnalysis &TypeInfo) {
27022701
VPlan *Plan = R->getParent()->getPlan();
27032702

27042703
assert(R->getInductionDescriptor().getKind() ==
@@ -2813,7 +2812,7 @@ void VPlanTransforms::convertToConcreteRecipes(VPlan &Plan,
28132812
}
28142813

28152814
if (auto *WidenIVR = dyn_cast<VPWidenPointerInductionRecipe>(&R)) {
2816-
expandVPWidenPointerInductionRecipe(WidenIVR, TypeInfo);
2815+
expandVPWidenPointerInduction(WidenIVR, TypeInfo);
28172816
ToRemove.push_back(WidenIVR);
28182817
continue;
28192818
}

0 commit comments

Comments
 (0)