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
838 B
Zig
25 lines
838 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_aeabi) {
|
|
@export(&__aeabi_f2ulz, .{ .name = "__aeabi_f2ulz", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
if (common.want_windows_arm_abi) {
|
|
@export(&__fixunssfdi, .{ .name = "__stou64", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
@export(&__fixunssfdi, .{ .name = "__fixunssfdi", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixunssfdi(a: f32) callconv(.c) u64 {
|
|
return intFromFloat(u64, a);
|
|
}
|
|
|
|
fn __aeabi_f2ulz(a: f32) callconv(.{ .arm_aapcs = .{} }) u64 {
|
|
return intFromFloat(u64, a);
|
|
}
|