From 9c055211e9559664646710e59c3a673f4a80fee5 Mon Sep 17 00:00:00 2001 From: Gabriel Baraldi Date: Mon, 3 Apr 2023 17:20:52 -0300 Subject: [PATCH] Make mark_obj32 like the 16 and 8 bit function by pushing the parent into the remset --- src/gc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gc.c b/src/gc.c index abe9169137b55..158a03be017fa 100644 --- a/src/gc.c +++ b/src/gc.c @@ -2070,6 +2070,7 @@ STATIC_INLINE jl_value_t *gc_mark_obj32(jl_ptls_t ptls, char *obj32_parent, uint gc_heap_snapshot_record_object_edge((jl_value_t*)obj32_parent, slot); } } + gc_mark_push_remset(ptls, (jl_value_t *)obj32_parent, nptr); return new_obj; }