mirror of
https://github.com/ziglang/zig.git
synced 2025-01-23 10:21:38 +00:00
22 lines
712 B
Zig
22 lines
712 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(&__floattidf_windows_x86_64, .{ .name = "__floattidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__floattidf, .{ .name = "__floattidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floattidf(a: i128) callconv(.C) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|
|
|
|
fn __floattidf_windows_x86_64(a: @Vector(2, u64)) callconv(.C) f64 {
|
|
return floatFromInt(f64, @as(i128, @bitCast(a)));
|
|
}
|