summaryrefslogtreecommitdiffhomepage
path: root/doc/opcode.md
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 /doc/opcode.md
parent500f721f7080e79c2e41e306cc1d94471c10f173 (diff)
downloadmruby-107c777341c4768f0208e590a9ec6c8b9a241060.tar.gz
mruby-107c777341c4768f0208e590a9ec6c8b9a241060.zip
Rename `OP_JUW` instruction to `OP_JMPUW`.
Diffstat (limited to 'doc/opcode.md')
-rw-r--r--doc/opcode.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/opcode.md b/doc/opcode.md
index abdee704f..513b28302 100644
--- a/doc/opcode.md
+++ b/doc/opcode.md
@@ -62,7 +62,7 @@ sign) of operands.
| OP_JMPIF | BS | if R(a) pc=b |
| OP_JMPNOT | BS | if !R(a) pc=b |
| OP_JMPNIL | BS | if R(a)==nil pc=b |
-| OP_JUW | S | unwind_and_jump_to(a) |
+| OP_JMPUW | S | unwind_and_jump_to(a) |
| OP_EXCEPT | B | R(a) = exc |
| OP_RESCUE | BB | R(b) = R(a).isa?(R(b)) |
| OP_RAISEIF | B | raise(R(a)) if R(a) |