Fix a missing newline in debug output.
authorDan Gohman <gohman@apple.com>
Tue, 25 May 2010 21:50:35 +0000 (21:50 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 25 May 2010 21:50:35 +0000 (21:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104644 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/InstCombine/InstCombineCasts.cpp

index 01f49d2ca53540025dd93bd517d61d05650c5118..b0137c4a32ca128b0a65ed8a0dc3ea63cdc437ba 100644 (file)
@@ -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);