mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 10:24:47 +01:00
10 lines
343 B
Zig
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)));
|
|
}
|