mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 08:33:06 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
22 lines
751 B
Zig
22 lines
751 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(__fixunstfsi, .{ .name = "__fixunskfsi", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(_Qp_qtoui, .{ .name = "_Qp_qtoui", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
@export(__fixunstfsi, .{ .name = "__fixunstfsi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __fixunstfsi(a: f128) callconv(.C) u32 {
|
|
return intFromFloat(u32, a);
|
|
}
|
|
|
|
fn _Qp_qtoui(a: *const f128) callconv(.C) u32 {
|
|
return intFromFloat(u32, a.*);
|
|
}
|