- fix return warning

This commit is contained in:
Magnus Norddahl 2018-10-10 04:57:35 +02:00
parent 884e185db0
commit 452c6fd158
1 changed files with 1 additions and 0 deletions

View File

@ -519,6 +519,7 @@ int VMCall(VMFunction *func, VMValue *params, int numparams, VMReturn *results,
auto exceptInfo = CurrentJitExceptInfo; auto exceptInfo = CurrentJitExceptInfo;
CurrentJitExceptInfo = prevExceptInfo; CurrentJitExceptInfo = prevExceptInfo;
VMRethrowException(exceptInfo); VMRethrowException(exceptInfo);
return 0;
} }
} }
} }