aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/trunctfhf2.zig
blob: b764a784559f847d0dfa2fd3136aae8a9f34ffd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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));
}