mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 08:33:06 +00:00
f26dda2117
Most of this migration was performed automatically with `zig fmt`. There were a few exceptions which I had to manually fix: * `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten * `@truncate`'s fixup is incorrect for vectors * Test cases are not formatted, and their error locations change
22 lines
722 B
Zig
22 lines
722 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(__floatuntidf_windows_x86_64, .{ .name = "__floatuntidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(__floatuntidf, .{ .name = "__floatuntidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floatuntidf(a: u128) callconv(.C) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|
|
|
|
fn __floatuntidf_windows_x86_64(a: @Vector(2, u64)) callconv(.C) f64 {
|
|
return floatFromInt(f64, @as(u128, @bitCast(a)));
|
|
}
|