mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
13 lines
311 B
Zig
13 lines
311 B
Zig
|
const common = @import("./common.zig");
|
||
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
||
|
|
||
|
pub const panic = common.panic;
|
||
|
|
||
|
comptime {
|
||
|
@export(__floatundihf, .{ .name = "__floatundihf", .linkage = common.linkage });
|
||
|
}
|
||
|
|
||
|
fn __floatundihf(a: u64) callconv(.C) f16 {
|
||
|
return intToFloat(f16, a);
|
||
|
}
|