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

pub const panic = common.panic;

comptime {
    if (common.want_ppc_abi) {
        @export(&__extenddftf2, .{ .name = "__extenddfkf2", .linkage = common.linkage, .visibility = common.visibility });
    } else if (common.want_sparc_abi) {
        @export(&_Qp_dtoq, .{ .name = "_Qp_dtoq", .linkage = common.linkage, .visibility = common.visibility });
    }
    @export(&__extenddftf2, .{ .name = "__extenddftf2", .linkage = common.linkage, .visibility = common.visibility });
}

pub fn __extenddftf2(a: f64) callconv(.c) f128 {
    return extendf(f128, f64, @as(u64, @bitCast(a)));
}

fn _Qp_dtoq(c: *f128, a: f64) callconv(.c) void {
    c.* = extendf(f128, f64, @as(u64, @bitCast(a)));
}