mirror of
https://github.com/ziglang/zig.git
synced 2024-12-02 10:02:32 +00:00
22 lines
754 B
Zig
22 lines
754 B
Zig
const common = @import("./common.zig");
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_ppc_abi) {
|
|
@export(&__fixunstfdi, .{ .name = "__fixunskfdi", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(&_Qp_qtoux, .{ .name = "_Qp_qtoux", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
@export(&__fixunstfdi, .{ .name = "__fixunstfdi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __fixunstfdi(a: f128) callconv(.C) u64 {
|
|
return intFromFloat(u64, a);
|
|
}
|
|
|
|
fn _Qp_qtoux(a: *const f128) callconv(.C) u64 {
|
|
return intFromFloat(u64, a.*);
|
|
}
|