Changes in directory llvm/lib/Transforms/Scalar:

InstructionCombining.cpp updated: 1.536.2.1.2.1 -> 1.536.2.1.2.2
---
Log message:

remove debug output

---
Diffs of the changes:  (+1 -3)

 InstructionCombining.cpp |    4 +---
 1 files changed, 1 insertion(+), 3 deletions(-)


Index: llvm/lib/Transforms/Scalar/InstructionCombining.cpp
diff -u llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.536.2.1.2.1 
llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.536.2.1.2.2
--- llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.536.2.1.2.1   Thu Feb 
22 09:11:27 2007
+++ llvm/lib/Transforms/Scalar/InstructionCombining.cpp Fri Feb 23 11:24:11 2007
@@ -4846,10 +4846,8 @@
           TD->getTypeSize(Op1->getType()) >= 
TD->getTypeSize(CastOp1->getType()) &&
           (CastOp1->getType()->isInteger() || 
isa<PointerType>(CastOp1->getType())) &&
           (Op1->getType()->isInteger() || isa<PointerType>(Op1->getType()))
-          ) {
-        std::cerr << "Triggered\n";
+          ) 
         return BinaryOperator::create(I.getOpcode(), CastOp0, CastOp1);
-      }
     }
 
     // Handle the special case of: setcc (cast bool to X), <cst>



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to