mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
27 lines
716 B
Zig
27 lines
716 B
Zig
const common = @import("./common.zig");
|
|
const floatToInt = @import("./float_to_int.zig").floatToInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_ppc_abi) {
|
|
@export(__fixkfdi, .{ .name = "__fixkfdi", .linkage = common.linkage });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(_Qp_qtox, .{ .name = "_Qp_qtox", .linkage = common.linkage });
|
|
} else {
|
|
@export(__fixtfdi, .{ .name = "__fixtfdi", .linkage = common.linkage });
|
|
}
|
|
}
|
|
|
|
pub fn __fixtfdi(a: f128) callconv(.C) i64 {
|
|
return floatToInt(i64, a);
|
|
}
|
|
|
|
fn __fixkfdi(a: f128) callconv(.C) i64 {
|
|
return floatToInt(i64, a);
|
|
}
|
|
|
|
fn _Qp_qtox(a: *const f128) callconv(.C) i64 {
|
|
return floatToInt(i64, a.*);
|
|
}
|