2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
2023-06-15 08:14:16 +01:00
|
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
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_f2ulz, .{ .name = "__aeabi_f2ulz", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
} else {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__fixunssfdi, .{ .name = "__fixunssfdi", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __fixunssfdi(a: f32) callconv(.C) u64 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return intFromFloat(u64, a);
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_f2ulz(a: f32) callconv(.AAPCS) u64 {
|
2023-06-15 08:14:16 +01:00
|
|
|
return intFromFloat(u64, a);
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|