Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions libm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ and this project adheres to

## [Unreleased]

## [0.2.16](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.15...libm-v0.2.16) - 2025-12-07

### Fixed

- Fix an incorrect result for `fminimum` and `fmaximum` with the input (-0, NaN)
- Change `CmpResult` to use a pointer-sized return type
- Compare against `CARGO_CFG_TARGET_FAMILY` in a multi-valued fashion
- Implement `exp` and its variants for i586 with inline assembly
- Implement `floor` and `ceil` in assembly on `i586`

### Other

- Significantly optimize `fmod` (13x speedup for f64! [#1002](https://github.com/rust-lang/compiler-builtins/pull/1002))

## [0.2.15](https://github.com/rust-lang/compiler-builtins/compare/libm-v0.2.14...libm-v0.2.15) - 2025-05-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion libm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libm"
version = "0.2.15"
version = "0.2.16"
authors = [
"Alex Crichton <[email protected]>",
"Amanieu d'Antras <[email protected]>",
Expand Down
Loading