mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-12 23:54:17 +00:00
- fixed setup of JIT functions that require extra frame space
https://forum.zdoom.org/viewtopic.php?t=68816
This commit is contained in:
parent
718e2ea0f5
commit
11ba0be4c2
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ void JitCompiler::SetupFrame()
|
|||
offsetD = offsetA + (int)(sfunc->NumRegA * sizeof(void*));
|
||||
offsetExtra = (offsetD + (int)(sfunc->NumRegD * sizeof(int32_t)) + 15) & ~15;
|
||||
|
||||
if (sfunc->SpecialInits.Size() == 0 && sfunc->NumRegS == 0)
|
||||
if (sfunc->SpecialInits.Size() == 0 && sfunc->NumRegS == 0 && sfunc->ExtraSpace == 0)
|
||||
{
|
||||
SetupSimpleFrame();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue