diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-08-08 15:57:42 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 16:21:35 +0900 |
| commit | 107c777341c4768f0208e590a9ec6c8b9a241060 (patch) | |
| tree | 23731010e8c7c5d4e91e4fabad2ee4f713ffc931 /include | |
| parent | 500f721f7080e79c2e41e306cc1d94471c10f173 (diff) | |
| download | mruby-107c777341c4768f0208e590a9ec6c8b9a241060.tar.gz mruby-107c777341c4768f0208e590a9ec6c8b9a241060.zip | |
Rename `OP_JUW` instruction to `OP_JMPUW`.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/ops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/ops.h b/include/mruby/ops.h index 770e54f3d..75936a791 100644 --- a/include/mruby/ops.h +++ b/include/mruby/ops.h @@ -49,7 +49,7 @@ OPCODE(JMP, S) /* pc=a */ OPCODE(JMPIF, BS) /* if R(a) pc=b */ OPCODE(JMPNOT, BS) /* if !R(a) pc=b */ OPCODE(JMPNIL, BS) /* if R(a)==nil pc=b */ -OPCODE(JUW, S) /* unwind_and_jump_to(a) */ +OPCODE(JMPUW, S) /* unwind_and_jump_to(a) */ OPCODE(EXCEPT, B) /* R(a) = exc */ OPCODE(RESCUE, BB) /* R(b) = R(a).isa?(R(b)) */ OPCODE(RAISEIF, B) /* raise(R(a)) if R(a) */ |
