mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 06:30:16 +00:00
Fix an obvious type. Patch by Ivan Krasin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
154c41dbbc
commit
dd5663c8e4
@ -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…
x
Reference in New Issue
Block a user