forked from OSchip/llvm-project
Clear a bit in this file that was causing a miscompilation of 178.galgel.
llvm-svn: 23980
This commit is contained in:
parent
64b830bc0c
commit
3b409a85eb
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue