1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

[NFC] Add missing end of line symbols

llvm-svn: 329383
This commit is contained in:
Max Kazantsev 2018-04-06 09:47:06 +00:00
parent 0ba2468ada
commit cc46df92b4

View File

@ -769,9 +769,9 @@ static bool isSafeIncreasingBound(const SCEV *Start,
return false;
DEBUG(dbgs() << "irce: isSafeIncreasingBound with:\n");
DEBUG(dbgs() << "irce: Start: " << *Start);
DEBUG(dbgs() << "irce: Step: " << *Step);
DEBUG(dbgs() << "irce: BoundSCEV: " << *BoundSCEV);
DEBUG(dbgs() << "irce: Start: " << *Start << "\n");
DEBUG(dbgs() << "irce: Step: " << *Step << "\n");
DEBUG(dbgs() << "irce: BoundSCEV: " << *BoundSCEV << "\n");
DEBUG(dbgs() << "irce: Pred: " << ICmpInst::getPredicateName(Pred) << "\n");
DEBUG(dbgs() << "irce: LatchExitBrIdx: " << LatchBrExitIdx << "\n");