The sense of this branch was inverted :(

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30293 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-09-13 16:56:12 +00:00
parent 8a650095fc
commit 7a6366de86

View 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;
}
}