Files
zig/lib/compiler_rt/fixunssfti.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

23 lines
603 B
Zig

const builtin = @import("builtin");
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(&__fixunssfti_windows_x86_64, "__fixunssfti");
} else {
symbol(&__fixunssfti, "__fixunssfti");
}
}
pub fn __fixunssfti(a: f32) callconv(.c) u128 {
return intFromFloat(u128, a);
}
const v2u64 = @Vector(2, u64);
fn __fixunssfti_windows_x86_64(a: f32) callconv(.c) v2u64 {
return @bitCast(intFromFloat(u128, a));
}