mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 00:36:34 +00:00
[NFC][VPlan] Trim extra spaces in VPDerivedIVRecipe::print
during debugging (#106041)
before: ``` EMIT vp<%3> = CANONICAL-INDUCTION ir<0>, vp<%8> vp<%4> = DERIVED-IV ir<%n> + vp<%3> * ir<-1> vp<%5> = SCALAR-STEPS vp<%4>, ir<-1> ``` after: ``` EMIT vp<%3> = CANONICAL-INDUCTION ir<0>, vp<%8> vp<%4> = DERIVED-IV ir<%n> + vp<%3> * ir<-1> vp<%5> = SCALAR-STEPS vp<%4>, ir<-1> ```
This commit is contained in:
parent
b74248dae8
commit
2f0d32692e
@ -1455,7 +1455,7 @@ void VPDerivedIVRecipe::print(raw_ostream &O, const Twine &Indent,
|
||||
VPSlotTracker &SlotTracker) const {
|
||||
O << Indent;
|
||||
printAsOperand(O, SlotTracker);
|
||||
O << Indent << "= DERIVED-IV ";
|
||||
O << " = DERIVED-IV ";
|
||||
getStartValue()->printAsOperand(O, SlotTracker);
|
||||
O << " + ";
|
||||
getOperand(1)->printAsOperand(O, SlotTracker);
|
||||
|
Loading…
x
Reference in New Issue
Block a user