Added TODO

This commit is contained in:
Justin Ethier 2015-10-16 23:05:22 -04:00
parent 7e37e1710d
commit 0f9ab2670d

View file

@ -2505,8 +2505,8 @@ char *gc_move(char *obj, gc_thread_data *thd, int *alloci, int *heap_grown) {
gc_thr_add_to_move_buffer(thd, alloci, hobj); gc_thr_add_to_move_buffer(thd, alloci, hobj);
return (char *)hobj; return (char *)hobj;
} }
// TODO case string_tag: { TODO case string_tag: {
// } }
case integer_tag: { case integer_tag: {
integer_type *hobj = gc_alloc(Cyc_heap, sizeof(integer_type), heap_grown); integer_type *hobj = gc_alloc(Cyc_heap, sizeof(integer_type), heap_grown);
mark(hobj) = 0; mark(hobj) = 0;