mirror of
https://github.com/ziglang/zig.git
synced 2024-11-14 16:13:24 +00:00
22 lines
748 B
Zig
22 lines
748 B
Zig
const common = @import("./common.zig");
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_ppc_abi) {
|
|
@export(&__floatditf, .{ .name = "__floatdikf", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(&_Qp_xtoq, .{ .name = "_Qp_xtoq", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
@export(&__floatditf, .{ .name = "__floatditf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __floatditf(a: i64) callconv(.C) f128 {
|
|
return floatFromInt(f128, a);
|
|
}
|
|
|
|
fn _Qp_xtoq(c: *f128, a: i64) callconv(.C) void {
|
|
c.* = floatFromInt(f128, a);
|
|
}
|