compiler-rt: gedf2 and gesf2

This commit is contained in:
Andrew Kelley 2022-06-17 16:40:25 -07:00
parent e798a3a779
commit bcf3a7d600
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ pub fn __gtdf2(a: f64, b: f64) callconv(.C) i32 {
}
fn __aeabi_dcmpge(a: f64, b: f64) callconv(.AAPCS) i32 {
return comparef.cmpf2(f64, comparef.GE, a, b) != .Less;
return @boolToInt(comparef.cmpf2(f64, comparef.GE, a, b) != .Less);
}
fn __aeabi_dcmpgt(a: f64, b: f64) callconv(.AAPCS) i32 {

View File

@ -28,7 +28,7 @@ pub fn __gtsf2(a: f32, b: f32) callconv(.C) i32 {
}
fn __aeabi_fcmpge(a: f32, b: f32) callconv(.AAPCS) i32 {
return comparef.cmpf2(f32, comparef.GE, a, b) != .Less;
return @boolToInt(comparef.cmpf2(f32, comparef.GE, a, b) != .Less);
}
fn __aeabi_fcmpgt(a: f32, b: f32) callconv(.AAPCS) i32 {