@@ -2,31 +2,24 @@ use crate::f64::consts;
2
2
use crate :: num:: { FpCategory as Fp , * } ;
3
3
4
4
/// Smallest number
5
- #[ allow( dead_code) ] // unused on x86
6
5
const TINY_BITS : u64 = 0x1 ;
7
6
8
7
/// Next smallest number
9
- #[ allow( dead_code) ] // unused on x86
10
8
const TINY_UP_BITS : u64 = 0x2 ;
11
9
12
10
/// Exponent = 0b11...10, Sifnificand 0b1111..10. Min val > 0
13
- #[ allow( dead_code) ] // unused on x86
14
11
const MAX_DOWN_BITS : u64 = 0x7fef_ffff_ffff_fffe ;
15
12
16
13
/// Zeroed exponent, full significant
17
- #[ allow( dead_code) ] // unused on x86
18
14
const LARGEST_SUBNORMAL_BITS : u64 = 0x000f_ffff_ffff_ffff ;
19
15
20
16
/// Exponent = 0b1, zeroed significand
21
- #[ allow( dead_code) ] // unused on x86
22
17
const SMALLEST_NORMAL_BITS : u64 = 0x0010_0000_0000_0000 ;
23
18
24
19
/// First pattern over the mantissa
25
- #[ allow( dead_code) ] // unused on x86
26
20
const NAN_MASK1 : u64 = 0x000a_aaaa_aaaa_aaaa ;
27
21
28
22
/// Second pattern over the mantissa
29
- #[ allow( dead_code) ] // unused on x86
30
23
const NAN_MASK2 : u64 = 0x0005_5555_5555_5555 ;
31
24
32
25
#[ allow( unused_macros) ]
@@ -343,9 +336,6 @@ fn test_is_sign_negative() {
343
336
assert ! ( ( -f64 :: NAN ) . is_sign_negative( ) ) ;
344
337
}
345
338
346
- // Ignore test on x87 floating point, these platforms do not guarantee NaN
347
- // payloads are preserved and flush denormals to zero, failing the tests.
348
- #[ cfg( not( target_arch = "x86" ) ) ]
349
339
#[ test]
350
340
fn test_next_up ( ) {
351
341
let tiny = f64:: from_bits ( TINY_BITS ) ;
@@ -375,9 +365,6 @@ fn test_next_up() {
375
365
assert_f64_biteq ! ( nan2. next_up( ) , nan2) ;
376
366
}
377
367
378
- // Ignore test on x87 floating point, these platforms do not guarantee NaN
379
- // payloads are preserved and flush denormals to zero, failing the tests.
380
- #[ cfg( not( target_arch = "x86" ) ) ]
381
368
#[ test]
382
369
fn test_next_down ( ) {
383
370
let tiny = f64:: from_bits ( TINY_BITS ) ;
0 commit comments