blob: 78b388a75ec3c7f4f1ceef15ff732b167bfb4c91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
const common = @import("./common.zig");
const comparef = @import("./comparef.zig");
pub const panic = common.panic;
comptime {
if (common.want_aeabi) {
@export(__aeabi_fcmpun, .{ .name = "__aeabi_fcmpun", .linkage = common.linkage });
} else {
@export(__unordsf2, .{ .name = "__unordsf2", .linkage = common.linkage });
}
}
pub fn __unordsf2(a: f32, b: f32) callconv(.C) i32 {
return comparef.unordcmp(f32, a, b);
}
fn __aeabi_fcmpun(a: f32, b: f32) callconv(.AAPCS) i32 {
return comparef.unordcmp(f32, a, b);
}
|