remove noisy debug print

This commit is contained in:
Yuichi Nishiwaki 2013-10-16 17:49:16 +09:00
parent fc152f034a
commit 840593f5f3
1 changed files with 0 additions and 4 deletions

View File

@ -349,10 +349,6 @@ pic_obj_alloc(pic_state *pic, size_t size, enum pic_tt tt)
}
obj->tt = tt;
#if GC_DEBUG
printf("* alloced object type %d\n", tt);
#endif
gc_protect(pic, obj);
return obj;
}