1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Fix unused API, outdated assertion

This commit is contained in:
Andy Wingo 2023-10-17 21:45:06 +02:00
parent a6e34c3594
commit 9ce8ee2921
2 changed files with 2 additions and 8 deletions

View file

@ -2386,8 +2386,8 @@ int gc_init(const struct gc_options *options, struct gc_stack_addr *stack_base,
GC_ASSERT_EQ(gc_allocator_alloc_table_begin_pattern(), METADATA_BYTE_YOUNG);
GC_ASSERT_EQ(gc_allocator_alloc_table_end_pattern(), METADATA_BYTE_END);
if (GC_GENERATIONAL) {
GC_ASSERT_EQ(gc_small_write_barrier_card_table_alignment(), SLAB_SIZE);
GC_ASSERT_EQ(gc_small_write_barrier_card_size(),
GC_ASSERT_EQ(gc_write_barrier_card_table_alignment(), SLAB_SIZE);
GC_ASSERT_EQ(gc_write_barrier_card_size(),
BLOCK_SIZE / REMSET_BYTES_PER_BLOCK);
}