From 370d1624c7b0350995275f87acf55c5a86b30d97 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 4 Jul 2025 09:39:09 +0200 Subject: [PATCH] Remove a debug assert; checked in nofl_metadata_byte_for_object --- src/nofl-space.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/nofl-space.h b/src/nofl-space.h index 35c7c81f3..2546f8f53 100644 --- a/src/nofl-space.h +++ b/src/nofl-space.h @@ -1765,9 +1765,6 @@ nofl_space_evacuate_or_mark_object(struct nofl_space *space, if (nofl_metadata_byte_has_mark(byte, space->current_mark)) return 0; - // It should at least have a young mark. - GC_ASSERT(byte & NOFL_METADATA_BYTE_MARK_MASK); - if (nofl_space_should_evacuate(space, byte, old_ref)) return nofl_space_evacuate(space, metadata, byte, edge, old_ref, evacuate);