mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Also, accepting `align(1)` pointers ensures that the alignment is safety checked rather than assumed.
15 lines
563 B
Zig
15 lines
563 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const common = @import("common.zig");
|
|
const bigIntFromFloat = @import("int_from_float.zig").bigIntFromFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(&__fixdfei, .{ .name = "__fixdfei", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __fixdfei(r: [*]u8, bits: usize, a: f64) callconv(.c) void {
|
|
const byte_size = std.zig.target.intByteSize(builtin.target, @intCast(bits));
|
|
return bigIntFromFloat(.signed, @ptrCast(@alignCast(r[0..byte_size])), a);
|
|
}
|