[llvm-commits] [see] CVS: llvm/lib/Transforms/Scalar/InstructionCombining.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Fri Feb 23 09:24:50 PST 2007



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>






More information about the llvm-commits mailing list