aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/mulxf3.zig
blob: 353d27c2903feff7ce51c717a540245655b59541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const common = @import("./common.zig");
const mulf3 = @import("./mulf3.zig").mulf3;

pub const panic = common.panic;

comptime {
    @export(__mulxf3, .{ .name = "__mulxf3", .linkage = common.linkage });
}

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