Files
WrldBox/.tmp_zig/lib/zig/compiler_rt/fixdfdi.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
624 B
Zig

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