[llvm-commits] [llvm] r109886 - /llvm/trunk/lib/Transforms/Scalar/LICM.cpp

Nick Lewycky nicholas at mxc.ca
Fri Jul 30 13:27:01 PDT 2010


Author: nicholas
Date: Fri Jul 30 15:27:01 2010
New Revision: 109886

URL: http://llvm.org/viewvc/llvm-project?rev=109886&view=rev
Log:
Add missing newline to debug statement.

Modified:
    llvm/trunk/lib/Transforms/Scalar/LICM.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LICM.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LICM.cpp?rev=109886&r1=109885&r2=109886&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LICM.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LICM.cpp Fri Jul 30 15:27:01 2010
@@ -457,7 +457,7 @@
 /// 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);





More information about the llvm-commits mailing list