mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
13 lines
376 B
Zig
13 lines
376 B
Zig
const common = @import("./common.zig");
|
|
const extendf = @import("./extendf.zig").extendf;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
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)));
|
|
}
|