Open
Description
While testing
Lines 2917 to 2930 in 94f542d
On X86
julia> 0.0*Inf64===-NaN64
true
On Risc-V
julia> 0.0*Inf64===NaN64
true
Why does X86 provide the negative Nan? If you only look at the type and use isnan, everything works as expected on all platforms. In that case, the tests can be modified.
Activity