We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d27ceb commit d09e27dCopy full SHA for d09e27d
compiler/rustc_target/src/abi/call/powerpc64.rs
@@ -56,9 +56,10 @@ where
56
return;
57
}
58
59
+ // The AIX ABI expect byval for aggregates
60
// See https://github.com/llvm/llvm-project/blob/main/clang/lib/CodeGen/Targets/PPC.cpp.
61
if !is_ret && abi == AIX {
- arg.make_indirect_byval(None);
62
+ arg.pass_by_stack_offset(None);
63
64
65
0 commit comments