File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -1009,17 +1009,4 @@ mod math {
1009
1009
}
1010
1010
}
1011
1011
1012
- #[ test]
1013
- fn fma_negative_zero ( ) {
1014
- let tiny = 1e-300 ;
1015
- assert ! ( libm:: fma( tiny, tiny, 0.0 ) . is_sign_positive( ) ) ;
1016
- // TODO: RUSTPYTHON incompatibility between fma inside libc and musl
1017
- // assert!(libm::fma(tiny, -tiny, 0.0).is_sign_negative());
1018
- assert ! ( libm:: fma( -tiny, -tiny, 0.0 ) . is_sign_positive( ) ) ;
1019
- // TODO: RUSTPYTHON incompatibility between fma inside libc and musl
1020
- // assert!(libm::fma(-tiny, tiny, 0.0).is_sign_negative());
1021
- assert ! ( libm:: fma( tiny, tiny, -0.0 ) . is_sign_positive( ) ) ;
1022
- assert ! ( libm:: fma( tiny, -tiny, -0.0 ) . is_sign_negative( ) ) ;
1023
- assert ! ( libm:: fma( -tiny, -tiny, -0.0 ) . is_sign_positive( ) ) ;
1024
- assert ! ( libm:: fma( -tiny, tiny, -0.0 ) . is_sign_negative( ) ) ;
1025
1012
}
You can’t perform that action at this time.
0 commit comments