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