mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 15:12:31 +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(&__floatsitf, .{ .name = "__floatsikf", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(&_Qp_itoq, .{ .name = "_Qp_itoq", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
@export(&__floatsitf, .{ .name = "__floatsitf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __floatsitf(a: i32) callconv(.C) f128 {
|
|
return floatFromInt(f128, a);
|
|
}
|
|
|
|
fn _Qp_itoq(c: *f128, a: i32) callconv(.C) void {
|
|
c.* = floatFromInt(f128, a);
|
|
}
|