arena doesn't have to be explicitly initialized

This commit is contained in:
Yuichi Nishiwaki 2013-10-13 17:26:17 +09:00
parent a6f561d66e
commit f0541e0f6b
1 changed files with 0 additions and 1 deletions

View File

@ -31,7 +31,6 @@ pic_open()
init_heap_page(pic->heap);
/* GC arena */
pic->arena = (struct pic_object *)calloc(PIC_ARENA_SIZE, sizeof(struct pic_object *));
pic->arena_idx = 0;
pic->global_env = pic_new_empty_env();