2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
2023-06-15 08:14:16 +01:00
|
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
2022-06-16 07:09:56 +01:00
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_ppc_abi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__fixunstfsi, .{ .name = "__fixunskfsi", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 22:18:08 +01:00
|
|
|
} else if (common.want_sparc_abi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(_Qp_qtoui, .{ .name = "_Qp_qtoui", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__fixunstfsi, .{ .name = "__fixunstfsi", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __fixunstfsi(a: f128) callconv(.C) u32 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return intFromFloat(u32, a);
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 22:18:08 +01:00
|
|
|
fn _Qp_qtoui(a: *const f128) callconv(.C) u32 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return intFromFloat(u32, a.*);
|
2022-06-16 22:18:08 +01:00
|
|
|
}
|