From: Artur Pilipenko Date: Wed, 1 Feb 2017 12:25:38 +0000 (+0000) Subject: [LoopPredication] Add a new line to debug output in LoopPredication pass X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38847f25fe1d058f488420ea630644fd4adb6598;p=llvm [LoopPredication] Add a new line to debug output in LoopPredication pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293762 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopPredication.cpp b/lib/Transforms/Scalar/LoopPredication.cpp index 4f683148038..fac2b8aecc8 100644 --- a/lib/Transforms/Scalar/LoopPredication.cpp +++ b/lib/Transforms/Scalar/LoopPredication.cpp @@ -164,7 +164,7 @@ Optional 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; }