[llvm-commits] [llvm] r104644 - /llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp
Dan Gohman
gohman at apple.com
Tue May 25 14:50:35 PDT 2010
Author: djg
Date: Tue May 25 16:50:35 2010
New Revision: 104644
URL: http://llvm.org/viewvc/llvm-project?rev=104644&view=rev
Log:
Fix a missing newline in debug output.
Modified:
llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp
Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp?rev=104644&r1=104643&r2=104644&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp Tue May 25 16:50:35 2010
@@ -442,7 +442,7 @@
// 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);
More information about the llvm-commits
mailing list