-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #222 - whitequark:master, r=alexcrichton
Implement comparesf2/comparedf2 intrinsics These intrinsics are indeed called on soft-float targets, you can verify this by compiling: ```rust #![no_std] fn comparesf2(a: f32, b: f32) -> bool { a > b } fn comparedf2(a: f64, b: f64) -> bool { a > b } ``` and looking at the disassembly. Doesn't come with tests because I'm not about to write *fourteen* of these horrifying build.rs structs by hand, and also because `cargo test` fails on latest nightly.
- Loading branch information
Showing
8 changed files
with
544 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.