zig/lib/compiler_rt/floatunditf.zig
2025-03-05 03:01:43 +00:00

21 lines
761 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(&__floatunditf, .{ .name = "__floatundikf", .linkage = common.linkage, .visibility = common.visibility });
} else if (common.want_sparc_abi) {
@export(&_Qp_uxtoq, .{ .name = "_Qp_uxtoq", .linkage = common.linkage, .visibility = common.visibility });
}
@export(&__floatunditf, .{ .name = "__floatunditf", .linkage = common.linkage, .visibility = common.visibility });
}
pub fn __floatunditf(a: u64) callconv(.c) f128 {
return floatFromInt(f128, a);
}
fn _Qp_uxtoq(c: *f128, a: u64) callconv(.c) void {
c.* = floatFromInt(f128, a);
}