summaryrefslogtreecommitdiffhomepage
path: root/src/codedump.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-07-31 03:20:00 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-07-31 03:20:00 +0900
commit43173e129965d776791fc643aba9f4c5244d8466 (patch)
treef0397f7f58e905eb11e7c8c1e9d9a1777d3ca647 /src/codedump.c
parent53e2723faede0e6f9959bd3316f4dd1e84b69609 (diff)
downloadmruby-43173e129965d776791fc643aba9f4c5244d8466.tar.gz
mruby-43173e129965d776791fc643aba9f4c5244d8466.zip
Removed unused instruction: `OP_KDICT`.
Diffstat (limited to 'src/codedump.c')
-rw-r--r--src/codedump.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/codedump.c b/src/codedump.c
index dc0e0e548..842d40bdf 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -285,10 +285,6 @@ codedump(mrb_state *mrb, mrb_irep *irep)
printf("OP_KARG\tR%d\t:%s\t", a, mrb_sym2name(mrb, irep->syms[b]));
print_lv_a(mrb, irep, a);
break;
- CASE(OP_KDICT, B):
- printf("OP_KDICT\tR%d\t\t", a);
- print_lv_a(mrb, irep, a);
- break;
CASE(OP_RETURN, B):
printf("OP_RETURN\tR%d\t\t", a);
print_lv_a(mrb, irep, a);