Author: lattner
Date: Sun Feb 17 14:54:40 2008
New Revision: 47242

URL: http://llvm.org/viewvc/llvm-project?rev=47242&view=rev
Log:
fix pasto

Modified:
    llvm/trunk/lib/Transforms/Scalar/Reassociate.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/Reassociate.cpp
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/Reassociate.cpp?rev=47242&r1=47241&r2=47242&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/Reassociate.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/Reassociate.cpp Sun Feb 17 14:54:40 2008
@@ -404,7 +404,7 @@
       isReassociableOp(Sub->getOperand(0), Instruction::Sub))
     return true;
   if (isReassociableOp(Sub->getOperand(1), Instruction::Add) ||
-      isReassociableOp(Sub->getOperand(0), Instruction::Sub))
+      isReassociableOp(Sub->getOperand(1), Instruction::Sub))
     return true;
   if (Sub->hasOneUse() && 
       (isReassociableOp(Sub->use_back(), Instruction::Add) ||


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

Reply via email to