[PATCH] D15403: [InstCombine] Adding "\n" to debug output. NFC.
    Z. Zheng via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Dec  9 17:55:16 PST 2015
    
    
  
zzheng created this revision.
zzheng added a reviewer: apazos.
zzheng added a subscriber: llvm-commits.
zzheng set the repository for this revision to rL LLVM.
Repository:
  rL LLVM
http://reviews.llvm.org/D15403
Files:
  lib/Transforms/InstCombine/InstCombineCasts.cpp
Index: lib/Transforms/InstCombine/InstCombineCasts.cpp
===================================================================
--- lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ lib/Transforms/InstCombine/InstCombineCasts.cpp
@@ -812,7 +812,7 @@
 
     // Okay, we can transform this!  Insert the new expression now.
     DEBUG(dbgs() << "ICE: EvaluateInDifferentType converting expression type"
-          " to avoid zero extend: " << CI);
+          " to avoid zero extend: " << CI << "\n");
     Value *Res = EvaluateInDifferentType(Src, DestTy, false);
     assert(Res->getType() == DestTy);
 
@@ -1101,7 +1101,7 @@
       canEvaluateSExtd(Src, DestTy)) {
     // Okay, we can transform this!  Insert the new expression now.
     DEBUG(dbgs() << "ICE: EvaluateInDifferentType converting expression type"
-          " to avoid sign extend: " << CI);
+          " to avoid sign extend: " << CI << "\n");
     Value *Res = EvaluateInDifferentType(Src, DestTy, true);
     assert(Res->getType() == DestTy);
 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15403.42368.patch
Type: text/x-patch
Size: 1010 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151210/5c9132d5/attachment.bin>
    
    
More information about the llvm-commits
mailing list