2022-07-10 17:53:24 +01:00
|
|
|
const builtin = @import("builtin");
|
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 {
|
2022-07-11 00:42:58 +01:00
|
|
|
if (common.want_windows_v2u64_abi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__floatuntidf_windows_x86_64, .{ .name = "__floatuntidf", .linkage = common.linkage, .visibility = common.visibility });
|
2022-07-11 00:42:58 +01:00
|
|
|
} else {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__floatuntidf, .{ .name = "__floatuntidf", .linkage = common.linkage, .visibility = common.visibility });
|
2022-07-11 00:42:58 +01:00
|
|
|
}
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __floatuntidf(a: u128) callconv(.C) f64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return intToFloat(f64, a);
|
|
|
|
}
|
2022-07-10 17:53:24 +01:00
|
|
|
|
2022-07-11 00:42:58 +01:00
|
|
|
fn __floatuntidf_windows_x86_64(a: @Vector(2, u64)) callconv(.C) f64 {
|
2022-07-10 17:53:24 +01:00
|
|
|
return intToFloat(f64, @bitCast(u128, a));
|
|
|
|
}
|