Changes in directory llvm/lib/Transforms/Scalar:

InstructionCombining.cpp updated: 1.481 -> 1.482
---
Log message:

Backing out last check-in for now. It's causing an infinite loop gccas lencode.

---
Diffs of the changes:  (+0 -6)

 InstructionCombining.cpp |    6 ------
 1 files changed, 6 deletions(-)


Index: llvm/lib/Transforms/Scalar/InstructionCombining.cpp
diff -u llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.481 
llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.482
--- llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.481   Fri May 12 
21:16:08 2006
+++ llvm/lib/Transforms/Scalar/InstructionCombining.cpp Sun May 14 01:46:03 2006
@@ -4793,9 +4793,6 @@
   if (!I || !I->hasOneUse()) return false;
   
   switch (I->getOpcode()) {
-  case Instruction::Add:
-  case Instruction::Sub:
-  case Instruction::Mul:
   case Instruction::And:
   case Instruction::Or:
   case Instruction::Xor:
@@ -4827,9 +4824,6 @@
   Instruction *I = cast<Instruction>(V);
   Instruction *Res;
   switch (I->getOpcode()) {
-  case Instruction::Add:
-  case Instruction::Sub:
-  case Instruction::Mul:
   case Instruction::And:
   case Instruction::Or:
   case Instruction::Xor: {



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

Reply via email to