mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
22 lines
713 B
Zig
22 lines
713 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_ul2f, .{ .name = "__aeabi_ul2f", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__floatundisf, .{ .name = if (common.want_windows_arm_abi) "__u64tos" else "__floatundisf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floatundisf(a: u64) callconv(.c) f32 {
|
|
return floatFromInt(f32, a);
|
|
}
|
|
|
|
fn __aeabi_ul2f(a: u64) callconv(.{ .arm_aapcs = .{} }) f32 {
|
|
return floatFromInt(f32, a);
|
|
}
|