diff options
| author | skidau <skidau@gmail.com> | 2015-01-18 15:22:31 +1100 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2015-01-18 15:22:31 +1100 |
| commit | 37a770bb9f23404cbdc75e8cc2df31dfecb97057 (patch) | |
| tree | 6074e3d7d56880948e50d92b91635413420da0b6 /Source/Core | |
| parent | 0acbb88aa26d9def1edecb653eac573a3152dd0d (diff) | |
| parent | 390ec6977c5f2dd1b2469303a21c755881cfd16f (diff) | |
Merge pull request #1896 from johnwchadwick/asmcommon-larger-codespace
Increase AsmCommon code space to fix crashes on Linux systems.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/Jit64/JitAsm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/Jit64/JitAsm.h b/Source/Core/Core/PowerPC/Jit64/JitAsm.h index 9d999b558f..cd6e1bde08 100644 --- a/Source/Core/Core/PowerPC/Jit64/JitAsm.h +++ b/Source/Core/Core/PowerPC/Jit64/JitAsm.h @@ -32,7 +32,9 @@ public: void Init(u8* stack_top) { m_stack_top = stack_top; - AllocCodeSpace(8192); + // NOTE: When making large additions to the AsmCommon code, you might + // want to ensure this number is big enough. + AllocCodeSpace(16384); Generate(); WriteProtect(); } |
