You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f32::tests::test_abs_sub, f64::tests::test_abs_sub and float::tests::test_abs_sub in libstd fail this assertion: assert!(NaN.abs_sub(&-1f32).is_NaN()); (the result is 0 instead of NaN)
This is because mingw's implementation of underlying function fdim() does not take NaNs into account:
f32::tests::test_abs_sub
,f64::tests::test_abs_sub and float::tests::test_abs_sub
in libstd fail this assertion:assert!(NaN.abs_sub(&-1f32).is_NaN()); (the result is 0 instead of NaN)
This is because mingw's implementation of underlying function
fdim()
does not take NaNs into account:The text was updated successfully, but these errors were encountered: