Files
zig/lib/compiler_rt/fixdfti.zig
T
Andrew Kelley 04c180c8e5 compiler_rt: partial cleanup
introduce `symbol` helper function and partially migrate to using it
2026-02-09 20:04:17 +01:00

22 lines
549 B
Zig

const common = @import("./common.zig");
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
const symbol = @import("../compiler_rt.zig").symbol;
comptime {
if (common.want_windows_v2u64_abi) {
symbol(&__fixdfti_windows_x86_64, "__fixdfti");
} else {
symbol(&__fixdfti, "__fixdfti");
}
}
pub fn __fixdfti(a: f64) callconv(.c) i128 {
return intFromFloat(i128, a);
}
const v2u64 = @Vector(2, u64);
fn __fixdfti_windows_x86_64(a: f64) callconv(.c) v2u64 {
return @bitCast(intFromFloat(i128, a));
}