summaryrefslogtreecommitdiffhomepage
path: root/src/codedump.c
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 /src/codedump.c
parent500f721f7080e79c2e41e306cc1d94471c10f173 (diff)
downloadmruby-107c777341c4768f0208e590a9ec6c8b9a241060.tar.gz
mruby-107c777341c4768f0208e590a9ec6c8b9a241060.zip
Rename `OP_JUW` instruction to `OP_JMPUW`.
Diffstat (limited to 'src/codedump.c')
-rw-r--r--src/codedump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codedump.c b/src/codedump.c
index 389ed3c8f..3f0801929 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -261,8 +261,8 @@ codedump(mrb_state *mrb, const mrb_irep *irep)
CASE(OP_JMP, S);
printf("OP_JMP\t\t%03d\n", a);
break;
- CASE(OP_JUW, S);
- printf("OP_JUW\t\t%03d\n", a);
+ CASE(OP_JMPUW, S);
+ printf("OP_JMPUW\t\t%03d\n", a);
break;
CASE(OP_JMPIF, BS);
printf("OP_JMPIF\tR%d\t%03d\t", a, b);