mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Fix an obvious type. Patch by Ivan Krasin.
llvm-svn: 136899
This commit is contained in:
parent
1136bcc11e
commit
12fbbde46a
@ -11686,7 +11686,7 @@ static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
|
||||
// Converting this to a max would handle comparisons between positive
|
||||
// and negative zero incorrectly.
|
||||
if (!UnsafeFPMath &&
|
||||
!DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
|
||||
!DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
|
||||
break;
|
||||
Opcode = X86ISD::FMAX;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user