aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/mulsf3.zig
blob: 8929b5deba123448372928fe0f7a088bc702e442 (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, .visibility = common.visibility });
    } else {
        @export(&__mulsf3, .{ .name = "__mulsf3", .linkage = common.linkage, .visibility = common.visibility });
    }
}

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

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