mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
21 lines
698 B
Zig
21 lines
698 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_ul2d, .{ .name = "__aeabi_ul2d", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__floatundidf, .{ .name = if (common.want_windows_arm_abi) "__u64tod" else "__floatundidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floatundidf(a: u64) callconv(.C) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|
|
|
|
fn __aeabi_ul2d(a: u64) callconv(.AAPCS) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|