zig/lib/compiler_rt/truncdfhf2.zig
2022-06-17 16:38:59 -07:00

21 lines
571 B
Zig

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 });
} else {
@export(__truncdfhf2, .{ .name = "__truncdfhf2", .linkage = common.linkage });
}
}
pub fn __truncdfhf2(a: f64) callconv(.C) common.F16T {
return @bitCast(common.F16T, truncf(f16, f64, a));
}
fn __aeabi_d2h(a: f64) callconv(.AAPCS) u16 {
return @bitCast(common.F16T, truncf(f16, f64, a));
}