Skip to content

Commit

Permalink
[LoopPredication] Add a new line to debug output in LoopPredication pass
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293762 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
arpilipe committed Feb 1, 2017
1 parent bddaeb4 commit 38847f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Transforms/Scalar/LoopPredication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 38847f2

Please sign in to comment.