Clear a bit in this file that was causing a miscompilation of 178.galgel.

llvm-svn: 23980
This commit is contained in:
Chris Lattner 2005-10-25 18:57:30 +00:00
parent 64b830bc0c
commit 3b409a85eb
1 changed files with 1 additions and 1 deletions

View File

@ -2472,7 +2472,7 @@ SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
if (N0.getOperand(0) == N1.getOperand(1))
return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(0), Cond);
if (N0.getOperand(1) == N1.getOperand(0))
return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(1), Cond);
return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(1), Cond);
}
}