mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
24 lines
713 B
Zig
24 lines
713 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(&__fixhfti_windows_x86_64, .{ .name = "__fixhfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(&__fixhfti, .{ .name = "__fixhfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixhfti(a: f16) callconv(.C) i128 {
|
|
return intFromFloat(i128, a);
|
|
}
|
|
|
|
const v2u64 = @Vector(2, u64);
|
|
|
|
fn __fixhfti_windows_x86_64(a: f16) callconv(.C) v2u64 {
|
|
return @bitCast(intFromFloat(i128, a));
|
|
}
|