about summary refs log tree commit diff
path: root/library/compiler-builtins/libm/src/math/j1f.rs
AgeCommit message (Collapse)AuthorLines
2025-07-30Simplify the configuration for no-panicTrevor Gross-2/+2
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.
2025-07-24Enable tests that were skipped on PowerPCTrevor Gross-2/+1
Most of these were skipped because of a bug with the platform implementation, or some kind of crash unwinding. Since the upgrade to Ubuntu 25.04, these all seem to be resolved with the exception of a bug in the host `__floatundisf` [1]. [1] https://github.com/rust-lang/compiler-builtins/pull/384#issuecomment-740413334
2025-04-19libm: Flatten the `libm/libm` directoryTrevor Gross-0/+384