use 'pc' as little as possible

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

View File

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