aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/subdf3.zig
blob: 9d62ffe4807f2eec8e950a8fcff3dfe7db0bb06b (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");

pub const panic = common.panic;

comptime {
    if (common.want_aeabi) {
        @export(__aeabi_dsub, .{ .name = "__aeabi_dsub", .linkage = common.linkage });
    } else {
        @export(__subdf3, .{ .name = "__subdf3", .linkage = common.linkage });
    }
}

fn __subdf3(a: f64, b: f64) callconv(.C) f64 {
    const neg_b = @bitCast(f64, @bitCast(u64, b) ^ (@as(u64, 1) << 63));
    return a + neg_b;
}

fn __aeabi_dsub(a: f64, b: f64) callconv(.AAPCS) f64 {
    const neg_b = @bitCast(f64, @bitCast(u64, b) ^ (@as(u64, 1) << 63));
    return a + neg_b;
}