[LoopPredication] Add a new line to debug output in LoopPredication pass

llvm-svn: 293762
This commit is contained in:
Artur Pilipenko 2017-02-01 12:25:38 +00:00
parent e5ad87e939
commit 2cbaded5b5
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ Optional<Value *> LoopPredication::widenICmpRangeCheck(ICmpInst *ICI,
? IndexAR->getStart()
: SE->getSCEVAtScope(IndexAR, L->getParentLoop());
if (NewLHSS == IndexAR) {
DEBUG(dbgs() << "Can't compute NewLHSS!");
DEBUG(dbgs() << "Can't compute NewLHSS!\n");
return None;
}