From d8da5c198348eac3d3d7a3e13dfb8a9351ed07ae Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 5 Nov 2020 12:27:09 -0800 Subject: add asserts to find crash --- gc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gc.c') diff --git a/gc.c b/gc.c index a80d9fc1bb..a5f99e5e3d 100644 --- a/gc.c +++ b/gc.c @@ -8524,10 +8524,10 @@ gc_sort_heap_by_empty_slots(rb_objspace_t *objspace) list_for_each(&heap_eden->pages, page, page_node) { page_list[i++] = page; - GC_ASSERT(page != NULL); + assert(page != NULL); } - GC_ASSERT(total_pages > 0); - GC_ASSERT((size_t)i == total_pages); + assert(total_pages > 0); + assert((size_t)i == total_pages); /* Sort the heap so "filled pages" are first. `heap_add_page` adds to the * head of the list, so empty pages will end up at the start of the heap */ -- cgit v1.2.3