2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
const floatToInt = @import("./float_to_int.zig").floatToInt;
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_aeabi) {
|
|
|
|
@export(__aeabi_d2lz, .{ .name = "__aeabi_d2lz", .linkage = common.linkage });
|
|
|
|
} else {
|
|
|
|
@export(__fixdfdi, .{ .name = "__fixdfdi", .linkage = common.linkage });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __fixdfdi(a: f64) callconv(.C) i64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return floatToInt(i64, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_d2lz(a: f64) callconv(.AAPCS) i64 {
|
|
|
|
return floatToInt(i64, a);
|
|
|
|
}
|