mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- fixed two apparently bogus asserts with returning gloating point constants.
This commit is contained in:
parent
3f98ba9069
commit
1895feb185
2 changed files with 3 additions and 3 deletions
|
@ -1827,12 +1827,12 @@ static void SetReturn(const VMRegisters ®, VMFrame *frame, VMReturn *ret, VM_
|
||||||
case REGT_FLOAT:
|
case REGT_FLOAT:
|
||||||
if (regtype & REGT_KONST)
|
if (regtype & REGT_KONST)
|
||||||
{
|
{
|
||||||
assert(regnum + ((regtype & REGT_KONST) ? 2u : 0u) < func->NumKonstF);
|
assert(regnum < func->NumKonstF);
|
||||||
src = &func->KonstF[regnum];
|
src = &func->KonstF[regnum];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
assert(regnum + ((regtype & REGT_KONST) ? 2u : 0u) < frame->NumRegF);
|
assert(regnum < frame->NumRegF);
|
||||||
src = ®.f[regnum];
|
src = ®.f[regnum];
|
||||||
}
|
}
|
||||||
if (regtype & REGT_MULTIREG3)
|
if (regtype & REGT_MULTIREG3)
|
||||||
|
|
|
@ -422,7 +422,7 @@ VMFrame *VMFrameStack::PopFrame()
|
||||||
|
|
||||||
int VMFrameStack::Call(VMFunction *func, VMValue *params, int numparams, VMReturn *results, int numresults, VMException **trap)
|
int VMFrameStack::Call(VMFunction *func, VMValue *params, int numparams, VMReturn *results, int numresults, VMException **trap)
|
||||||
{
|
{
|
||||||
assert(this == VMGlobalStack); // why would anyone even want to create a local stack?
|
assert(this == &GlobalVMStack); // why would anyone even want to create a local stack?
|
||||||
bool allocated = false;
|
bool allocated = false;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue