Skip to content

Commit 5d15a50

Browse files
fhahnzahiraam
authored andcommitted
[VPlan] Remove stray indent when printing scalar steps recipe.
VPScalarIVStepsRecipe will now be printed as vp<%6> = SCALAR-STEPS vp<%3>, ir<1> instead of vp<%6> = SCALAR-STEPS vp<%3>, ir<1>
1 parent ba7c3a6 commit 5d15a50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ void VPScalarIVStepsRecipe::print(raw_ostream &O, const Twine &Indent,
10891089
VPSlotTracker &SlotTracker) const {
10901090
O << Indent;
10911091
printAsOperand(O, SlotTracker);
1092-
O << Indent << "= SCALAR-STEPS ";
1092+
O << " = SCALAR-STEPS ";
10931093
printOperands(O, SlotTracker);
10941094
}
10951095
#endif

0 commit comments

Comments
 (0)