mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
Simplifies the logic, clarifies the comment, and fixes a minor bug, which is that we exported the Windows ABI name *instead* of the standard compiler-rt name, but it's meant to be exported *in addition* to the standard name (this is LLVM's behavior and it is more useful).
25 lines
828 B
Zig
25 lines
828 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_aeabi) {
|
|
@export(&__aeabi_l2d, .{ .name = "__aeabi_l2d", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
if (common.want_windows_arm_abi) {
|
|
@export(&__floatdidf, .{ .name = "__i64tod", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
@export(&__floatdidf, .{ .name = "__floatdidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floatdidf(a: i64) callconv(.c) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|
|
|
|
fn __aeabi_l2d(a: i64) callconv(.{ .arm_aapcs = .{} }) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|