Fix a missing newline in debug output.

llvm-svn: 104644
This commit is contained in:
Dan Gohman 2010-05-25 21:50:35 +00:00
parent f3925438e5
commit a4abd035ea
1 changed files with 1 additions and 1 deletions

View 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);