mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
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.
21 lines
636 B
Zig
21 lines
636 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(__floatditf, .{ .name = "__floatdikf", .linkage = common.linkage });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(_Qp_xtoq, .{ .name = "_Qp_xtoq", .linkage = common.linkage });
|
|
}
|
|
@export(__floatditf, .{ .name = "__floatditf", .linkage = common.linkage });
|
|
}
|
|
|
|
pub fn __floatditf(a: i64) callconv(.C) f128 {
|
|
return intToFloat(f128, a);
|
|
}
|
|
|
|
fn _Qp_xtoq(c: *f128, a: i64) callconv(.C) void {
|
|
c.* = intToFloat(f128, a);
|
|
}
|