diff --git a/vm.c b/vm.c index d31759724e..eca8bbc895 100644 --- a/vm.c +++ b/vm.c @@ -3498,7 +3498,6 @@ thread_mark(void *ptr) if (th->root_fiber) rb_fiber_mark_self(th->root_fiber); RUBY_ASSERT(th->ec == rb_fiberptr_get_ec(th->ec->fiber_ptr)); - rb_gc_mark(th->stat_insn_usage); rb_gc_mark(th->last_status); rb_gc_mark(th->locking_mutex); rb_gc_mark(th->name); diff --git a/vm_core.h b/vm_core.h index c5c0c05b6d..5c99320bd0 100644 --- a/vm_core.h +++ b/vm_core.h @@ -1167,9 +1167,6 @@ typedef struct rb_thread_struct { thread_invoke_type_func } invoke_type; - /* statistics data for profiler */ - VALUE stat_insn_usage; - /* fiber */ rb_fiber_t *root_fiber;