zig/lib/compiler_rt/extendhftf2.zig
2026-01-04 00:27:08 -08:00

10 lines
343 B
Zig

const common = @import("./common.zig");
const extendf = @import("./extendf.zig").extendf;
comptime {
@export(&__extendhftf2, .{ .name = "__extendhftf2", .linkage = common.linkage, .visibility = common.visibility });
}
pub fn __extendhftf2(a: common.F16T(f128)) callconv(.c) f128 {
return extendf(f128, f16, @as(u16, @bitCast(a)));
}