mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-02 00:43:29 +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;
|
using namespace asmjit;
|
||||||
StringLogger logger;
|
StringLogger logger;
|
||||||
|
|
||||||
|
if(sfunc->VarFlags & VARF_Abstract)
|
||||||
|
{
|
||||||
|
// Printf(TEXTCOLOR_ORANGE "Skipping abstract function during JIT dump: %s\n", sfunc->PrintableName.GetChars());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ThrowingErrorHandler errorHandler;
|
ThrowingErrorHandler errorHandler;
|
||||||
|
|
Loading…
Reference in a new issue