2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
2023-06-15 08:14:16 +01:00
|
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
2022-06-16 07:09:56 +01:00
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_aeabi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__aeabi_ul2d, .{ .name = "__aeabi_ul2d", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
} else {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__floatundidf, .{ .name = "__floatundidf", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __floatundidf(a: u64) callconv(.C) f64 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return floatFromInt(f64, a);
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_ul2d(a: u64) callconv(.AAPCS) f64 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return floatFromInt(f64, a);
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|