[llvm] [GISel][RISCV]Implement indirect parameter passing (PR #95429)
Gábor Spaits via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 17 08:00:26 PDT 2024
================
@@ -798,15 +857,19 @@ bool CallLowering::handleAssignments(ValueHandler &Handler,
// store. We may need to adjust the offset for big endian targets.
LLT MemTy = Handler.getStackValueStoreType(DL, VA, Flags);
- MachinePointerInfo MPO;
+ MachinePointerInfo MPO(ArgReg);
----------------
spaits wrote:
Oh I understand the register that comes from `getStackAddress`. I changed this. I will also run the regression tests, because it is in code that is not just active for indirect parameter passing.
https://github.com/llvm/llvm-project/pull/95429
More information about the llvm-commits
mailing list