mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
c50f33b111
The Zig LLVM backend emits calls to softfloat methods with the "standard compiler-rt" names. Rather than add complexity to the backend and have to synchronize the naming scheme across all targets, the simplest fix is just to export these symbols under both the "standard" and the platform-specific naming convention.
22 lines
649 B
Zig
22 lines
649 B
Zig
const common = @import("./common.zig");
|
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_ppc_abi) {
|
|
@export(__floatunditf, .{ .name = "__floatundikf", .linkage = common.linkage });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(_Qp_uxtoq, .{ .name = "_Qp_uxtoq", .linkage = common.linkage });
|
|
}
|
|
@export(__floatunditf, .{ .name = "__floatunditf", .linkage = common.linkage });
|
|
}
|
|
|
|
pub fn __floatunditf(a: u64) callconv(.C) f128 {
|
|
return intToFloat(f128, a);
|
|
}
|
|
|
|
fn _Qp_uxtoq(c: *f128, a: u64) callconv(.C) void {
|
|
c.* = intToFloat(f128, a);
|
|
}
|