diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2010-07-30 20:27:01 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2010-07-30 20:27:01 +0000 |
commit | 299c6dfcbf48bd1edb9508bd36614d761c2f6b12 (patch) | |
tree | cea4fe6868261726bc5a9fd3857c490de100df57 /llvm/lib/Transforms | |
parent | 916a28b16a5d616f17a0abde3315808a90b735c7 (diff) | |
download | bcm5719-llvm-299c6dfcbf48bd1edb9508bd36614d761c2f6b12.tar.gz bcm5719-llvm-299c6dfcbf48bd1edb9508bd36614d761c2f6b12.zip |
Add missing newline to debug statement.
llvm-svn: 109886
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index 0f206698d5d..da9f0b1e395 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<BasicBlock*, 8> ExitBlocks; CurLoop->getExitBlocks(ExitBlocks); |