Fix InstCombine/2004-08-09-RemInfLoop.llx
authorChris Lattner <sabre@nondot.org>
Mon, 9 Aug 2004 21:05:48 +0000 (21:05 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 9 Aug 2004 21:05:48 +0000 (21:05 +0000)
This should go into the 1.3 branch

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15593 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index eb4f1e31a6a1647e6828cd9b51a4ff3e9e20604c..bf0f0e839d007fad48d618f43ea3726338627d47 100644 (file)
@@ -829,7 +829,7 @@ Instruction *InstCombiner::visitRem(BinaryOperator &I) {
   if (I.getType()->isSigned())
     if (Value *RHSNeg = dyn_castNegVal(I.getOperand(1)))
       if (!isa<ConstantSInt>(RHSNeg) ||
-          cast<ConstantSInt>(RHSNeg)->getValue() >= 0) {
+          cast<ConstantSInt>(RHSNeg)->getValue() > 0) {
         // X % -Y -> X % Y
         AddUsesToWorkList(I);
         I.setOperand(1, RHSNeg);