Merge pull request #26 from GorgonMeducer/master

minor update
This commit is contained in:
Lyon 2021-12-30 23:08:35 +08:00 committed by GitHub
commit b7afb748e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,8 +74,7 @@ typedef Arg* (*VM_instruct_handler)(PikaObj* self,
char* data);
#define __INS_IMPL
#include "__instruction_table.h"
#if defined(__VM_DEBUG__)
static Arg* VM_instruction_handler_NON(PikaObj* self,
@ -491,6 +490,9 @@ static Arg* VM_instruction_handler_CTN(PikaObj* self,
vmState->jmp = -997;
return NULL;
}
#else
# define __INS_IMPL
# include "__instruction_table.h"
#endif
const VM_instruct_handler VM_instruct_handler_table[__INSTRCUTION_CNT] = {