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) {
|
|
|
|
@export(__aeabi_ul2d, .{ .name = "__aeabi_ul2d", .linkage = common.linkage });
|
|
|
|
} else {
|
|
|
|
@export(__floatundidf, .{ .name = "__floatundidf", .linkage = common.linkage });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __floatundidf(a: u64) callconv(.C) f64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return intToFloat(f64, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_ul2d(a: u64) callconv(.AAPCS) f64 {
|
|
|
|
return intToFloat(f64, a);
|
|
|
|
}
|