Skip to content

Commit

Permalink
[LSR] Fix typo in debug message where backspace escape was used inste…
Browse files Browse the repository at this point in the history
…ad of new line.
  • Loading branch information
topperc committed Dec 24, 2023
1 parent 9423e45 commit d8ddcae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7006,7 +7006,7 @@ static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,

LLVM_DEBUG(dbgs() << "Old term-cond:\n"
<< *OldTermCond << "\n"
<< "New term-cond:\b" << *NewTermCond << "\n");
<< "New term-cond:\n" << *NewTermCond << "\n");

BI->setCondition(NewTermCond);

Expand Down

0 comments on commit d8ddcae

Please sign in to comment.