2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
const floatToInt = @import("./float_to_int.zig").floatToInt;
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_ppc_abi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__fixtfdi, .{ .name = "__fixkfdi", .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_qtox, .{ .name = "_Qp_qtox", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__fixtfdi, .{ .name = "__fixtfdi", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __fixtfdi(a: f128) callconv(.C) i64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return floatToInt(i64, a);
|
|
|
|
}
|
|
|
|
|
2022-06-16 22:18:08 +01:00
|
|
|
fn _Qp_qtox(a: *const f128) callconv(.C) i64 {
|
|
|
|
return floatToInt(i64, a.*);
|
|
|
|
}
|