mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +00:00
Don't try to generate code for abstract functions during JIT dump
This commit is contained in:
parent
fa8df5a4e5
commit
3cb8f1be44
1 changed files with 7 additions and 0 deletions
|
@ -44,6 +44,13 @@ void JitDumpLog(FILE *file, VMScriptFunction *sfunc)
|
|||
{
|
||||
using namespace asmjit;
|
||||
StringLogger logger;
|
||||
|
||||
if(sfunc->VarFlags & VARF_Abstract)
|
||||
{
|
||||
// Printf(TEXTCOLOR_ORANGE "Skipping abstract function during JIT dump: %s\n", sfunc->PrintableName.GetChars());
|
||||
return;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
ThrowingErrorHandler errorHandler;
|
||||
|
|
Loading…
Reference in a new issue