aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/unordhf2.zig
blob: 2c2edad816866c9f3890b662b0e17f908c299d77 (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(&__unordhf2, .{ .name = "__unordhf2", .linkage = common.linkage, .visibility = common.visibility });
}

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