2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_aeabi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__aeabi_dsub, .{ .name = "__aeabi_dsub", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
} else {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__subdf3, .{ .name = "__subdf3", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-16 07:09:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __subdf3(a: f64, b: f64) callconv(.C) f64 {
|
2023-06-22 18:46:56 +01:00
|
|
|
const neg_b = @as(f64, @bitCast(@as(u64, @bitCast(b)) ^ (@as(u64, 1) << 63)));
|
2022-06-16 07:09:56 +01:00
|
|
|
return a + neg_b;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_dsub(a: f64, b: f64) callconv(.AAPCS) f64 {
|
2023-06-22 18:46:56 +01:00
|
|
|
const neg_b = @as(f64, @bitCast(@as(u64, @bitCast(b)) ^ (@as(u64, 1) << 63)));
|
2022-06-16 07:09:56 +01:00
|
|
|
return a + neg_b;
|
|
|
|
}
|