From 581cd0892ebf1305db96a346b50711dc1dfd261d Mon Sep 17 00:00:00 2001 From: d-netto Date: Mon, 25 Sep 2023 13:05:18 -0300 Subject: [PATCH] RAI: remove spurious gc_try_claim_and_push This should be squashed with https://github.com/RelationalAI/julia/pull/53 when that is merged. --- src/gc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gc.c b/src/gc.c index d9e5c7906cce32..9899aec35692ab 100644 --- a/src/gc.c +++ b/src/gc.c @@ -2076,7 +2076,6 @@ STATIC_INLINE jl_value_t *gc_mark_obj16(jl_ptls_t ptls, char *obj16_parent, uint if (new_obj != NULL) { verify_parent2("object", obj16_parent, slot, "field(%d)", gc_slot_to_fieldidx(obj16_parent, slot, (jl_datatype_t*)jl_typeof(obj16_parent))); - gc_try_claim_and_push(mq, new_obj, &nptr); if (obj16_begin + 1 != obj16_end) { gc_try_claim_and_push(mq, new_obj, &nptr); }