aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/extendhftf2.zig
blob: 3b1f257fa9aaaea09633ebfb2dbda751dee21ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const common = @import("./common.zig");
const extendf = @import("./extendf.zig").extendf;

pub const panic = common.panic;

comptime {
    @export(&__extendhftf2, .{ .name = "__extendhftf2", .linkage = common.linkage, .visibility = common.visibility });
}

pub fn __extendhftf2(a: common.F16T(f128)) callconv(.c) f128 {
    return extendf(f128, f16, @as(u16, @bitCast(a)));
}