mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
9e1e54d324
This is the name LLVM 22 expects.
15 lines
410 B
Zig
15 lines
410 B
Zig
const compiler_rt = @import("../compiler_rt.zig");
|
|
const symbol = @import("../compiler_rt.zig").symbol;
|
|
const truncf = @import("./truncf.zig").truncf;
|
|
|
|
comptime {
|
|
symbol(&__trunctfhf2, "__trunctfhf2");
|
|
if (compiler_rt.want_ppc_abi) {
|
|
symbol(&__trunctfhf2, "__trunckfhf2");
|
|
}
|
|
}
|
|
|
|
pub fn __trunctfhf2(a: f128) callconv(.c) compiler_rt.F16T(f128) {
|
|
return @bitCast(truncf(f16, f128, a));
|
|
}
|