aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/truncdfhf2.zig
blob: a24650ddb78f4f256fc46d370fc37fbe76823c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const common = @import("./common.zig");
const truncf = @import("./truncf.zig").truncf;

pub const panic = common.panic;

comptime {
    if (common.want_aeabi) {
        @export(&__aeabi_d2h, .{ .name = "__aeabi_d2h", .linkage = common.linkage, .visibility = common.visibility });
    }
    @export(&__truncdfhf2, .{ .name = "__truncdfhf2", .linkage = common.linkage, .visibility = common.visibility });
}

pub fn __truncdfhf2(a: f64) callconv(.c) common.F16T(f64) {
    return @bitCast(truncf(f16, f64, a));
}

fn __aeabi_d2h(a: f64) callconv(.{ .arm_aapcs = .{} }) u16 {
    return @bitCast(truncf(f16, f64, a));
}