mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:04:44 +01:00
compiler-rt: additionally export __trunctfhf2 as __trunckfhf2 on powerpc
This is the name LLVM 22 expects.
This commit is contained in:
parent
3d93eeff3a
commit
5a5aef163b
1 changed files with 3 additions and 0 deletions
|
|
@ -4,6 +4,9 @@ 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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue