summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-08-08 15:57:42 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:35 +0900
commit107c777341c4768f0208e590a9ec6c8b9a241060 (patch)
tree23731010e8c7c5d4e91e4fabad2ee4f713ffc931 /include
parent500f721f7080e79c2e41e306cc1d94471c10f173 (diff)
downloadmruby-107c777341c4768f0208e590a9ec6c8b9a241060.tar.gz
mruby-107c777341c4768f0208e590a9ec6c8b9a241060.zip
Rename `OP_JUW` instruction to `OP_JMPUW`.
Diffstat (limited to 'include')
-rw-r--r--include/mruby/ops.h2
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) */