mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 15:12:31 +00:00
21 lines
613 B
Zig
21 lines
613 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_d2uiz, .{ .name = "__aeabi_d2uiz", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__fixunsdfsi, .{ .name = "__fixunsdfsi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixunsdfsi(a: f64) callconv(.C) u32 {
|
|
return intFromFloat(u32, a);
|
|
}
|
|
|
|
fn __aeabi_d2uiz(a: f64) callconv(.AAPCS) u32 {
|
|
return intFromFloat(u32, a);
|
|
}
|