compiler-rt: additionally export __trunctfhf2 as __trunckfhf2 on powerpc

This is the name LLVM 22 expects.
This commit is contained in:
Alex Rønne Petersen
2026-01-19 20:42:56 +01:00
parent 421d997938
commit 9e1e54d324
+3
View File
@@ -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) {