(code refactoring)
* alloc.c (GC_clear_fl_marks): Do not check that q is not null (because
it is checked by the caller).
/* Decrement GC_bytes_found by number of bytes on free list. */
STATIC void GC_clear_fl_marks(ptr_t q)
{
- if (q != NULL) {
struct hblk *h = HBLKPTR(q);
struct hblk *last_h = h;
hdr *hhdr = HDR(h);
sz = hhdr->hb_sz;
}
}
- }
}
#if defined(GC_ASSERTIONS) && defined(THREADS) && defined(THREAD_LOCAL_ALLOC)