summaryrefslogtreecommitdiffhomepage
path: root/src/codedump.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-02-08 09:45:55 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-02-08 09:45:55 +0900
commitbe550f04e48ee3bfd7ca6967c6042db0599675dc (patch)
tree7fe2e74be2ec7ac9cbba9b38bd99e7c43062fcfc /src/codedump.c
parent7eebbce42ff62dc8e799d969194c9db5cc636a82 (diff)
downloadmruby-be550f04e48ee3bfd7ca6967c6042db0599675dc.tar.gz
mruby-be550f04e48ee3bfd7ca6967c6042db0599675dc.zip
codedump.c: OP_POPERR does not have register access.
Diffstat (limited to 'src/codedump.c')
-rw-r--r--src/codedump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/codedump.c b/src/codedump.c
index 4b13d4361..59ba4fdae 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -416,8 +416,7 @@ codedump(mrb_state *mrb, mrb_irep *irep)
print_lv(mrb, irep, c, RA);
break;
case OP_POPERR:
- printf("OP_POPERR\t%d\t\t", GETARG_A(c));
- print_lv(mrb, irep, c, RA);
+ printf("OP_POPERR\t%d\t\t\n", GETARG_A(c));
break;
case OP_EPOP:
printf("OP_EPOP\t%d\n", GETARG_A(c));