The sense of this branch was inverted :(

llvm-svn: 30293
This commit is contained in:
Chris Lattner 2006-09-13 16:56:12 +00:00
parent cd34779ef6
commit 0c9ae46c5f
1 changed files with 1 additions and 1 deletions

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