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

pub const panic = common.panic;

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

pub fn __mulsf3(a: f32, b: f32) callconv(.C) f32 {
    return mulf3(f32, a, b);
}

fn __aeabi_fmul(a: f32, b: f32) callconv(.AAPCS) f32 {
    return mulf3(f32, a, b);
}