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

pub const panic = common.panic;

comptime {
    @export(&__unordxf2, .{ .name = "__unordxf2", .linkage = common.linkage, .visibility = common.visibility });
}

pub fn __unordxf2(a: f80, b: f80) callconv(.c) i32 {
    return comparef.unordcmp(f80, a, b);
}