Add missing newline to debug statement.
authorNick Lewycky <nicholas@mxc.ca>
Fri, 30 Jul 2010 20:27:01 +0000 (20:27 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 30 Jul 2010 20:27:01 +0000 (20:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109886 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LICM.cpp

index 0f206698d5d9224dcf0f360f13be82e521416f7d..da9f0b1e395458b82cfb09e0aecb9ddb4ba3c1f8 100644 (file)
@@ -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<BasicBlock*, 8> ExitBlocks;
   CurLoop->getExitBlocks(ExitBlocks);