- fix opcodes not being listed in jit debug assembly

This commit is contained in:
Magnus Norddahl 2018-09-13 19:03:30 +02:00
parent b92e5fbf2a
commit c359601737
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
static const char *OpNames[NUM_OPS] =
{
#define xx(op, name, mode, alt, kreg, ktype) #op
#define xx(op, name, mode, alt, kreg, ktype) #op,
#include "vmops.h"
#undef xx
};