Skip to content

Commit

Permalink
Merge pull request #16580 from LinHu2016/GC_Loom_update_6
Browse files Browse the repository at this point in the history
Fix continuation stackslot scanning issue in Concurrent Scavenger
  • Loading branch information
amicic authored Jan 19, 2023
2 parents ce5f39f + ca33513 commit dd11c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/gc_glue_java/ScavengerDelegate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ MM_ScavengerDelegate::doStackSlot(MM_EnvironmentStandard *env, omrobjectptr_t *s
}
break;
case SCAN_REASON_SHOULDREMEMBER:
*shouldRemember = scavenger->shouldRememberSlot(slotPtr);
*shouldRemember |= scavenger->shouldRememberSlot(slotPtr);
break;
}
}
Expand Down

0 comments on commit dd11c3c

Please sign in to comment.