aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-05-25 21:50:35 +0000
committerDan Gohman <gohman@apple.com>2010-05-25 21:50:35 +0000
commitbbde6db92aeb7312a96e8f58a93244615d43eb0e (patch)
treec637c89334b3c6a5809835fd3a337a6397ec1825 /lib/Transforms
parent3fe79fd1451918e661b45268de5610b9657ae72c (diff)
downloadexternal_llvm-bbde6db92aeb7312a96e8f58a93244615d43eb0e.zip
external_llvm-bbde6db92aeb7312a96e8f58a93244615d43eb0e.tar.gz
external_llvm-bbde6db92aeb7312a96e8f58a93244615d43eb0e.tar.bz2
Fix a missing newline in debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104644 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/InstCombine/InstCombineCasts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineCasts.cpp b/lib/Transforms/InstCombine/InstCombineCasts.cpp
index 01f49d2..b0137c4 100644
--- a/lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ b/lib/Transforms/InstCombine/InstCombineCasts.cpp
@@ -442,7 +442,7 @@ Instruction *InstCombiner::visitTrunc(TruncInst &CI) {
// If this cast is a truncate, evaluting in a different type always
// eliminates the cast, so it is always a win.
DEBUG(dbgs() << "ICE: EvaluateInDifferentType converting expression type"
- " to avoid cast: " << CI);
+ " to avoid cast: " << CI << '\n');
Value *Res = EvaluateInDifferentType(Src, DestTy, false);
assert(Res->getType() == DestTy);
return ReplaceInstUsesWith(CI, Res);