zig/lib/compiler_rt/unordhf2.zig
2025-03-05 03:01:43 +00:00

13 lines
341 B
Zig

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);
}