small optimize

This commit is contained in:
Yuichi Nishiwaki 2014-02-04 10:28:22 +09:00
parent 2022fa163b
commit 0947173c32
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ void print_code(pic_state *, struct pic_code);
#if PIC_DIRECT_THREADED_VM
# define VM_LOOP JUMP;
# define CASE(x) L_##x: OPCODE_EXEC_HOOK;
# define NEXT c = *++pc; JUMP;
# define NEXT pc++; JUMP;
# define JUMP c = *pc; goto *oplabels[pc->insn];
# define VM_LOOP_END
#else