compiler-builtins-zynq/src/float
whitequark 6adcc9e9cb comparesf2/comparedf2: use i32 instead of bool for return type.
Note that this changes semantics:
    pub extern "C" fn __eqsf2(a: f32, b: f32) -> bool {
        cmp(a, b).to_le_abi() != 0
    }

is not the same as

    pub extern "C" fn __eqsf2(a: f32, b: f32) -> i32 {
        cmp(a, b).to_le_abi()
    }

However, compiler-rt does the latter, so this is actually
an improvement.
2017-12-29 06:14:51 +00:00
..
add.rs Convert add! to a function 2017-09-14 17:33:44 +02:00
cmp.rs comparesf2/comparedf2: use i32 instead of bool for return type. 2017-12-29 06:14:51 +00:00
conv.rs Partially revert a272d753f5 2017-09-29 02:20:27 +02:00
div.rs Implement divsf3 and divdf3 2017-11-13 20:22:27 -05:00
mod.rs Implement comparesf2/comparedf2 intrinsics. 2017-12-28 03:45:32 +00:00
mul.rs Implement mulsf3 and muldf3 2017-11-08 17:36:34 -05:00
pow.rs Don't use a macro for pow calculation 2017-09-14 01:59:02 +02:00
sub.rs Refactor float builtins to use associated consts 2017-09-13 22:09:52 +02:00