mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 09:02:32 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
21 lines
599 B
Zig
21 lines
599 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_f2iz, .{ .name = "__aeabi_f2iz", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(__fixsfsi, .{ .name = "__fixsfsi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixsfsi(a: f32) callconv(.C) i32 {
|
|
return intFromFloat(i32, a);
|
|
}
|
|
|
|
fn __aeabi_f2iz(a: f32) callconv(.AAPCS) i32 {
|
|
return intFromFloat(i32, a);
|
|
}
|