blob: 8a57e2dbc1071c33b37b1c2cbb0e0251a515948e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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.*);
}
|