master
 1const common = @import("./common.zig");
 2const floatFromInt = @import("./float_from_int.zig").floatFromInt;
 3
 4pub const panic = common.panic;
 5
 6comptime {
 7    @export(&__floatundihf, .{ .name = "__floatundihf", .linkage = common.linkage, .visibility = common.visibility });
 8}
 9
10fn __floatundihf(a: u64) callconv(.c) f16 {
11    return floatFromInt(f16, a);
12}