vm.c: unify JUMP instructions in OP_SEND.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-06-02 18:53:22 +09:00
parent 843abc5c7b
commit 9775315240
+1 -2
View File
@@ -1628,7 +1628,6 @@ RETRY_TRY_BLOCK:
/* pop stackpos */
ci = cipop(mrb);
pc = ci->pc;
JUMP;
}
else {
/* setup environment for calling method */
@@ -1638,9 +1637,9 @@ RETRY_TRY_BLOCK:
syms = irep->syms;
mrb_stack_extend(mrb, (argc < 0 && irep->nregs < 3) ? 3 : irep->nregs);
pc = irep->iseq;
JUMP;
}
}
JUMP;
CASE(OP_CALL, Z) {
mrb_callinfo *ci;