diff options
| author | Ryan Snyder <ryan@vector35.com> | 2025-04-17 05:20:05 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2025-04-24 10:23:16 -0400 |
| commit | 71af6853ae407d70dc0783d5682b80563d045a90 (patch) | |
| tree | 7fccedf85b724eddf3326608782e575ea52baaec /arch/mips/arch_mips.cpp | |
| parent | 0493db09dee436a9ecb9009ae7222dccefd3d5e3 (diff) | |
mips: fix mips32 linux-syscall cc stack behavior
Diffstat (limited to 'arch/mips/arch_mips.cpp')
| -rw-r--r-- | arch/mips/arch_mips.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/arch_mips.cpp b/arch/mips/arch_mips.cpp index d7b1d980..0c788133 100644 --- a/arch/mips/arch_mips.cpp +++ b/arch/mips/arch_mips.cpp @@ -2575,6 +2575,11 @@ public: { return false; } + + virtual bool IsStackReservedForArgumentRegisters() override + { + return true; + } }; class MipsLinuxRtlResolveCallingConvention: public CallingConvention |
