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

20 lines
548 B
Zig

const common = @import("./common.zig");
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
const symbol = @import("../compiler_rt.zig").symbol;
comptime {
if (common.want_windows_v2u64_abi) {
symbol(&__floattisf_windows_x86_64, "__floattisf");
} else {
symbol(&__floattisf, "__floattisf");
}
}
pub fn __floattisf(a: i128) callconv(.c) f32 {
return floatFromInt(f32, a);
}
fn __floattisf_windows_x86_64(a: @Vector(2, u64)) callconv(.c) f32 {
return floatFromInt(f32, @as(i128, @bitCast(a)));
}