aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-07-30 20:27:01 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-07-30 20:27:01 +0000
commitd45d675ad6281e27d9a9351015ce16f45f421c23 (patch)
tree917e5bf859c3cdab5a7eb8d2a0d2aa5fa737f738 /lib
parent57b06fcca8ac04c10d176f99e65f03f71b05ad66 (diff)
downloadexternal_llvm-d45d675ad6281e27d9a9351015ce16f45f421c23.zip
external_llvm-d45d675ad6281e27d9a9351015ce16f45f421c23.tar.gz
external_llvm-d45d675ad6281e27d9a9351015ce16f45f421c23.tar.bz2
Add missing newline to debug statement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Scalar/LICM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp
index 0f20669..da9f0b1 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<BasicBlock*, 8> ExitBlocks;
CurLoop->getExitBlocks(ExitBlocks);