diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-06-02 18:53:22 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-06-02 18:53:22 +0900 |
| commit | 9775315240961a14cd6dd0cf51641c694c900149 (patch) | |
| tree | 985a49662dbbf1d7679523b0281ef7ef6bf19522 /src/vm.c | |
| parent | 843abc5c7b21f652b2e7809831f0b999e11c9431 (diff) | |
| download | mruby-9775315240961a14cd6dd0cf51641c694c900149.tar.gz mruby-9775315240961a14cd6dd0cf51641c694c900149.zip | |
vm.c: unify `JUMP` instructions in `OP_SEND`.
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |
