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

15 lines
479 B
Zig

const builtin = @import("builtin");
const std = @import("std");
const floatFromBigInt = @import("float_from_int.zig").floatFromBigInt;
const symbol = @import("../compiler_rt.zig").symbol;
comptime {
symbol(&__floateidf, "__floateidf");
}
pub fn __floateidf(a: [*]const u8, bits: usize) callconv(.c) f64 {
const byte_size = std.zig.target.intByteSize(&builtin.target, @intCast(bits));
return floatFromBigInt(f64, .signed, @ptrCast(@alignCast(a[0..byte_size])));
}