From 299c6dfcbf48bd1edb9508bd36614d761c2f6b12 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Fri, 30 Jul 2010 20:27:01 +0000 Subject: [PATCH] Add missing newline to debug statement. llvm-svn: 109886 --- llvm/lib/Transforms/Scalar/LICM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index 0f206698d5d9..da9f0b1e3954 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/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);