mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
8205050: ZGC: Incorrect use of RootAccess in ZHeapIterator
Reviewed-by: stefank, eosterlund
This commit is contained in:
parent
57203871dd
commit
ec4c0637f8
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public:
|
|||
virtual void do_oop(oop* p) {
|
||||
// Load barrier needed here for the same reason we
|
||||
// need fixup_partial_loads() in ZHeap::mark_end()
|
||||
const oop obj = RootAccess<>::oop_load(p);
|
||||
const oop obj = ZBarrier::load_barrier_on_oop_field(p);
|
||||
_iter->push(obj);
|
||||
_iter->drain(_cl);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue