mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
04c180c8e5
introduce `symbol` helper function and partially migrate to using it
20 lines
548 B
Zig
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)));
|
|
}
|