2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_aeabi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__aeabi_ui2d, .{ .name = "__aeabi_ui2d", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
} else {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__floatunsidf, .{ .name = "__floatunsidf", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __floatunsidf(a: u32) callconv(.C) f64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return intToFloat(f64, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_ui2d(a: u32) callconv(.AAPCS) f64 {
|
|
|
|
return intToFloat(f64, a);
|
|
|
|
}
|