Implement passing of ByVal formal arguments when the argument is passed partly in the argument registers, with the remainder of the argument passed on the stack.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/test/CodeGen/PowerPC/aix-cc-byval-mem.ll | ||
---|---|---|
249 | Probably a dumb question... why $r3 and $f1 are not in liveins? Am I missing something here? |
llvm/test/CodeGen/PowerPC/aix-cc-byval-mem.ll | ||
---|---|---|
249 | Not dumb at all: The values aren't used so they aren't added to the livein list (even though they would have been initialized by the caller). |
Probably a dumb question... why $r3 and $f1 are not in liveins? Am I missing something here?