mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 05:07:42 +00:00
Currently, attributes for `no-panic` are gated behind both the `test` config and `assert_no_panic`, because `no-panic` is a dev dependency (so only available with test configuration). However, we only emit `assert_no_panic` when the test config is also set anyway, so there isn't any need to gate on both. Replace gates on `all(test, assert_no_panic)` with only `assert_no_panic`. This is simpler, and also has the benefit that attempting to check for panics without `--test` errors.
29 lines
657 B
Rust
29 lines
657 B
Rust
const FP_ILOGBNAN: i32 = -1 - 0x7fffffff;
|
|
const FP_ILOGB0: i32 = FP_ILOGBNAN;
|
|
|
|
#[cfg_attr(assert_no_panic, no_panic::no_panic)]
|
|
pub fn ilogbf(x: f32) -> i32 {
|
|
let mut i = x.to_bits();
|
|
let e = ((i >> 23) & 0xff) as i32;
|
|
|
|
if e == 0 {
|
|
i <<= 9;
|
|
if i == 0 {
|
|
force_eval!(0.0 / 0.0);
|
|
return FP_ILOGB0;
|
|
}
|
|
/* subnormal x */
|
|
let mut e = -0x7f;
|
|
while (i >> 31) == 0 {
|
|
e -= 1;
|
|
i <<= 1;
|
|
}
|
|
e
|
|
} else if e == 0xff {
|
|
force_eval!(0.0 / 0.0);
|
|
if (i << 9) != 0 { FP_ILOGBNAN } else { i32::MAX }
|
|
} else {
|
|
e - 0x7f
|
|
}
|
|
}
|