1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-08 15:32:27 +02:00

Remove a debug assert; checked in nofl_metadata_byte_for_object

This commit is contained in:
Andy Wingo 2025-07-04 09:39:09 +02:00
parent c0baca39ba
commit 370d1624c7

View file

@ -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);