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

Evan Cheng evan.cheng at apple.com
Sat May 13 23:46:15 PDT 2006



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: {






More information about the llvm-commits mailing list