diff options
| author | Trevor Gross <tmgross@umich.edu> | 2025-07-30 09:45:53 -0500 |
|---|---|---|
| committer | Trevor Gross <tmgross@umich.edu> | 2025-07-30 10:02:34 -0500 |
| commit | ecf6d3c6ced41d71a09248fdc679309e39bae318 (patch) | |
| tree | ce3ad0f8611a10d212b16164f93d19f9a6286de7 /library/compiler-builtins/libm/src/math/logf.rs | |
| parent | 3cbd088ee4e453eeab2d3cfae3e047b7e12bece8 (diff) | |
| download | rust-ecf6d3c6ced41d71a09248fdc679309e39bae318.tar.gz rust-ecf6d3c6ced41d71a09248fdc679309e39bae318.zip | |
Simplify the configuration for no-panic
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.
Diffstat (limited to 'library/compiler-builtins/libm/src/math/logf.rs')
| -rw-r--r-- | library/compiler-builtins/libm/src/math/logf.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/compiler-builtins/libm/src/math/logf.rs b/library/compiler-builtins/libm/src/math/logf.rs index 68d1943025e..cd7a7b0ba00 100644 --- a/library/compiler-builtins/libm/src/math/logf.rs +++ b/library/compiler-builtins/libm/src/math/logf.rs @@ -22,7 +22,7 @@ const LG3: f32 = 0.28498786688; /* 0x91e9ee.0p-25 */ const LG4: f32 = 0.24279078841; /* 0xf89e26.0p-26 */ /// The natural logarithm of `x` (f32). -#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)] +#[cfg_attr(assert_no_panic, no_panic::no_panic)] pub fn logf(mut x: f32) -> f32 { let x1p25 = f32::from_bits(0x4c000000); // 0x1p25f === 2 ^ 25 |
