aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/fixtfdi.zig
blob: 9cc9835352acee665189c9b4ab11a084754e1890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const common = @import("./common.zig");
const floatToInt = @import("./float_to_int.zig").floatToInt;

pub const panic = common.panic;

comptime {
    if (common.want_ppc_abi) {
        @export(__fixkfdi, .{ .name = "__fixkfdi", .linkage = common.linkage });
    } else if (common.want_sparc_abi) {
        @export(_Qp_qtox, .{ .name = "_Qp_qtox", .linkage = common.linkage });
    } else {
        @export(__fixtfdi, .{ .name = "__fixtfdi", .linkage = common.linkage });
    }
}

pub fn __fixtfdi(a: f128) callconv(.C) i64 {
    return floatToInt(i64, a);
}

fn __fixkfdi(a: f128) callconv(.C) i64 {
    return floatToInt(i64, a);
}

fn _Qp_qtox(a: *const f128) callconv(.C) i64 {
    return floatToInt(i64, a.*);
}