summaryrefslogtreecommitdiffstats
path: root/llvm/lib
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
commita4abd035ea7b704632317f45711c897a46b0abf5 (patch)
treeab9e244e539f44aa377af791b9ce80a0025c8d68 /llvm/lib
parentf3925438e5747b340539bba35f0a35c09ee1104f (diff)
downloadbcm5719-llvm-a4abd035ea7b704632317f45711c897a46b0abf5.tar.gz
bcm5719-llvm-a4abd035ea7b704632317f45711c897a46b0abf5.zip
Fix a missing newline in debug output.
llvm-svn: 104644
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
index 01f49d2ca53..b0137c4a32c 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ b/llvm/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);
OpenPOWER on IntegriCloud