- minor cleanups in header file

This commit is contained in:
Magnus Norddahl 2018-09-13 02:38:51 +02:00
commit fad8c9c7b4
2 changed files with 9 additions and 11 deletions

View file

@ -92,10 +92,15 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
/////////////////////////////////////////////////////////////////////////////
static const char *OpNames[NUM_OPS] =
{
#define xx(op, name, mode, alt, kreg, ktype) #op
#include "vmops.h"
#undef xx
};
void JitCompiler::Codegen()
{
using namespace asmjit;
Setup();
pc = sfunc->Code;