mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
21 lines
611 B
Zig
21 lines
611 B
Zig
const common = @import("./common.zig");
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_aeabi) {
|
|
@export(__aeabi_f2ulz, .{ .name = "__aeabi_f2ulz", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(__fixunssfdi, .{ .name = "__fixunssfdi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixunssfdi(a: f32) callconv(.C) u64 {
|
|
return intFromFloat(u64, a);
|
|
}
|
|
|
|
fn __aeabi_f2ulz(a: f32) callconv(.AAPCS) u64 {
|
|
return intFromFloat(u64, a);
|
|
}
|