summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/iseq.c b/iseq.c
index 956bd2a697..e6568a6a2e 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1946,12 +1946,6 @@ rb_insn_operand_intern(const rb_iseq_t *iseq,
}
break;
}
- case TS_GENTRY:
- {
- struct rb_global_entry *entry = (struct rb_global_entry *)op;
- ret = rb_str_dup(rb_id2str(entry->id));
- }
- break;
case TS_IC:
case TS_IVC:
@@ -2776,12 +2770,6 @@ iseq_data_to_ary(const rb_iseq_t *iseq)
}
}
break;
- case TS_GENTRY:
- {
- struct rb_global_entry *entry = (struct rb_global_entry *)*seq;
- rb_ary_push(ary, ID2SYM(entry->id));
- }
- break;
case TS_IC:
case TS_IVC:
case TS_ISE: