Files
WrldBox/.tmp_zig/lib/zig/compiler_rt/fixsfdi.zig
swim67667 c17dfc94ce
Some checks failed
Build Project / build (ubuntu-latest) (push) Failing after 12m33s
added multi-compiling stuff (only works on my mac for now)
2026-06-28 16:40:20 -04:00

24 lines
642 B
Zig

const builtin = @import("builtin");
const compiler_rt = @import("../compiler_rt.zig");
const intFromFloat = @import("./int_from_float.zig").intFromFloat;
const symbol = @import("../compiler_rt.zig").symbol;
comptime {
if (compiler_rt.want_aeabi) {
symbol(&__aeabi_f2lz, "__aeabi_f2lz");
} else {
if (compiler_rt.want_windows_arm_abi) {
symbol(&__fixsfdi, "__stoi64");
}
symbol(&__fixsfdi, "__fixsfdi");
}
}
pub fn __fixsfdi(a: f32) callconv(.c) i64 {
return intFromFloat(i64, a);
}
fn __aeabi_f2lz(a: f32) callconv(.{ .arm_aapcs = .{} }) i64 {
return intFromFloat(i64, a);
}