From: Nick Lewycky Date: Fri, 30 Jul 2010 20:27:01 +0000 (+0000) Subject: Add missing newline to debug statement. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=39a383124b70dda1fea18288235114029ede76cf;p=oota-llvm.git Add missing newline to debug statement. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109886 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index 0f206698d5d..da9f0b1e395 100644 --- a/lib/Transforms/Scalar/LICM.cpp +++ b/lib/Transforms/Scalar/LICM.cpp @@ -457,7 +457,7 @@ bool LICM::isLoopInvariantInst(Instruction &I) { /// position, and may either delete it or move it to outside of the loop. /// void LICM::sink(Instruction &I) { - DEBUG(dbgs() << "LICM sinking instruction: " << I); + DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n"); SmallVector ExitBlocks; CurLoop->getExitBlocks(ExitBlocks);