| Index: src/heap/mark-compact.cc
|
| diff --git a/src/heap/mark-compact.cc b/src/heap/mark-compact.cc
|
| index 6651ad01698806dd70e99c411115e520df51bae0..e3f969e0c2462b5721857d16a35cd2adb4415dea 100644
|
| --- a/src/heap/mark-compact.cc
|
| +++ b/src/heap/mark-compact.cc
|
| @@ -2369,11 +2369,11 @@ void MinorMarkCompactCollector::MarkLiveObjects() {
|
| {
|
| TRACE_GC(heap()->tracer(),
|
| GCTracer::Scope::MINOR_MC_MARK_OLD_TO_NEW_POINTERS);
|
| - RememberedSet<OLD_TO_NEW>::Iterate(heap(), [this](Address addr) {
|
| + RememberedSet<OLD_TO_NEW>::Iterate(heap(), false, [this](Address addr) {
|
| return CheckAndMarkObject(heap(), addr);
|
| });
|
| RememberedSet<OLD_TO_NEW>::IterateTyped(
|
| - heap(), [this](SlotType type, Address host_addr, Address addr) {
|
| + heap(), false, [this](SlotType type, Address host_addr, Address addr) {
|
| return UpdateTypedSlotHelper::UpdateTypedSlot(
|
| isolate(), type, addr, [this](Object** addr) {
|
| return CheckAndMarkObject(heap(),
|
|
|