The sense of this branch was inverted :(
authorChris Lattner <sabre@nondot.org>
Wed, 13 Sep 2006 16:56:12 +0000 (16:56 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 13 Sep 2006 16:56:12 +0000 (16:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30293 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 43742784349b753abfce9f0f7e56bb432020f0c5..56ee57e1f7cc5650f9f31f56becd8a8baa1d22e6 100644 (file)
@@ -1878,7 +1878,7 @@ static bool translateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
         if (RHSC->isAllOnesValue()) {
           // X > -1   -> X == 0, jump on sign.
           RHS = DAG.getConstant(0, RHS.getValueType());
-          X86CC = X86ISD::COND_S;
+          X86CC = X86ISD::COND_NS;
           return true;
         }
     }