summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index e09c9c4ae6..24d15575e9 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1290,7 +1290,7 @@ void
Init_ISeq(void)
{
/* declare ::VM::InstructionSequence */
- rb_cISeq = rb_define_class_under(rb_cVM, "InstructionSequence", rb_cObject);
+ rb_cISeq = rb_define_class_under(rb_cRubyVM, "InstructionSequence", rb_cObject);
rb_define_alloc_func(rb_cISeq, iseq_alloc);
rb_define_method(rb_cISeq, "inspect", iseq_inspect, 0);
rb_define_method(rb_cISeq, "disasm", ruby_iseq_disasm, 0);