mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
NaN fixes for clang backend (#9652)
This commit is contained in:
@@ -267,12 +267,7 @@ proc evalOp(m: TMagic, n, a, b, c: PNode; g: ModuleGraph): PNode =
|
||||
of mSubF64: result = newFloatNodeT(getFloat(a) - getFloat(b), n, g)
|
||||
of mMulF64: result = newFloatNodeT(getFloat(a) * getFloat(b), n, g)
|
||||
of mDivF64:
|
||||
if getFloat(b) == 0.0:
|
||||
if getFloat(a) == 0.0: result = newFloatNodeT(NaN, n, g)
|
||||
elif getFloat(b).classify == fcNegZero: result = newFloatNodeT(-Inf, n, g)
|
||||
else: result = newFloatNodeT(Inf, n, g)
|
||||
else:
|
||||
result = newFloatNodeT(getFloat(a) / getFloat(b), n, g)
|
||||
result = newFloatNodeT(getFloat(a) / getFloat(b), n, g)
|
||||
of mMaxF64:
|
||||
if getFloat(a) > getFloat(b): result = newFloatNodeT(getFloat(a), n, g)
|
||||
else: result = newFloatNodeT(getFloat(b), n, g)
|
||||
|
||||
@@ -2041,11 +2041,11 @@ proc getRefcount*[T](x: seq[T]): int {.importc: "getRefcount", noSideEffect,
|
||||
|
||||
|
||||
const
|
||||
Inf* {.magic: "Inf".} = 1.0 / 0.0
|
||||
Inf* = 0x7FF0000000000000'f64
|
||||
## contains the IEEE floating point value of positive infinity.
|
||||
NegInf* {.magic: "NegInf".} = -Inf
|
||||
NegInf* = 0xFFF0000000000000'f64
|
||||
## contains the IEEE floating point value of negative infinity.
|
||||
NaN* {.magic: "NaN".} = 0.0 / 0.0
|
||||
NaN* = 0x7FF7FFFFFFFFFFFF'f64
|
||||
## contains an IEEE floating point value of *Not A Number*. Note
|
||||
## that you cannot compare a floating point value to this value
|
||||
## and expect a reasonable result - use the `classify` procedure
|
||||
|
||||
Reference in New Issue
Block a user