Skip to content

Commit

Permalink
Backport GC typo fix to 1.10 (#54299)
Browse files Browse the repository at this point in the history
Co-authored-by: Diogo Netto <61364108+d-netto@users.noreply.github.com>
  • Loading branch information
KristofferC and d-netto committed Apr 29, 2024
1 parent 61adee2 commit 5308c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2052,7 +2052,7 @@ STATIC_INLINE void gc_mark_array8(jl_ptls_t ptls, jl_value_t *ary8_parent, jl_va
pushed_chunk = 1;
}
}
for (; ary8_begin < ary8_end; ary8_begin += elsize) {
for (; ary8_begin < scan_end; ary8_begin += elsize) {
for (uint8_t *pindex = elem_begin; pindex < elem_end; pindex++) {
jl_value_t **slot = &ary8_begin[*pindex];
new_obj = *slot;
Expand Down

0 comments on commit 5308c26

Please sign in to comment.