blob: 353a3c3c0d15d85bba78c5ee079c0152581fda24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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(&__floatuntixf_windows_x86_64, .{ .name = "__floatuntixf", .linkage = common.linkage, .visibility = common.visibility });
} else {
@export(&__floatuntixf, .{ .name = "__floatuntixf", .linkage = common.linkage, .visibility = common.visibility });
}
}
pub fn __floatuntixf(a: u128) callconv(.c) f80 {
return floatFromInt(f80, a);
}
fn __floatuntixf_windows_x86_64(a: @Vector(2, u64)) callconv(.c) f80 {
return floatFromInt(f80, @as(u128, @bitCast(a)));
}
|