refactor delete unused variable

cadfaacb25 missed it.
This commit is contained in:
卜部昌平 2019-09-24 11:44:41 +09:00
Родитель e561e4a8f3
Коммит 14ba62d488
1 изменённых файлов: 1 добавлений и 2 удалений

3
vm.c
Просмотреть файл

@ -3227,13 +3227,12 @@ Init_VM(void)
rb_thread_t *th = GET_THREAD();
VALUE filename = rb_fstring_lit("<main>");
const rb_iseq_t *iseq = rb_iseq_new(0, filename, filename, Qnil, 0, ISEQ_TYPE_TOP);
volatile VALUE th_self;
/* create vm object */
vm->self = TypedData_Wrap_Struct(rb_cRubyVM, &vm_data_type, vm);
/* create main thread */
th_self = th->self = TypedData_Wrap_Struct(rb_cThread, &thread_data_type, th);
th->self = TypedData_Wrap_Struct(rb_cThread, &thread_data_type, th);
vm->main_thread = th;
vm->running_thread = th;
th->vm = vm;