mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
21 lines
628 B
Zig
21 lines
628 B
Zig
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_ui2f, .{ .name = "__aeabi_ui2f", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__floatunsisf, .{ .name = "__floatunsisf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floatunsisf(a: u32) callconv(.c) f32 {
|
|
return floatFromInt(f32, a);
|
|
}
|
|
|
|
fn __aeabi_ui2f(a: u32) callconv(.{ .arm_aapcs = .{} }) f32 {
|
|
return floatFromInt(f32, a);
|
|
}
|