2022-06-16 07:09:56 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
const mulf3 = @import("./mulf3.zig").mulf3;
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_aeabi) {
|
|
|
|
@export(__aeabi_dmul, .{ .name = "__aeabi_dmul", .linkage = common.linkage });
|
|
|
|
} else {
|
|
|
|
@export(__muldf3, .{ .name = "__muldf3", .linkage = common.linkage });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-16 23:14:12 +01:00
|
|
|
pub fn __muldf3(a: f64, b: f64) callconv(.C) f64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return mulf3(f64, a, b);
|
|
|
|
}
|
|
|
|
|
2022-06-16 22:21:11 +01:00
|
|
|
fn __aeabi_dmul(a: f64, b: f64) callconv(.AAPCS) f64 {
|
2022-06-16 07:09:56 +01:00
|
|
|
return mulf3(f64, a, b);
|
|
|
|
}
|