Skip to content

Commit d8ddcae

Browse files
committed
[LSR] Fix typo in debug message where backspace escape was used instead of new line.
1 parent 9423e45 commit d8ddcae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7006,7 +7006,7 @@ static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,
70067006

70077007
LLVM_DEBUG(dbgs() << "Old term-cond:\n"
70087008
<< *OldTermCond << "\n"
7009-
<< "New term-cond:\b" << *NewTermCond << "\n");
7009+
<< "New term-cond:\n" << *NewTermCond << "\n");
70107010

70117011
BI->setCondition(NewTermCond);
70127012

0 commit comments

Comments
 (0)