aboutsummaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 3 insertions, 3 deletions
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 */