Index: src/heap/incremental-marking-inl.h |
diff --git a/src/heap/incremental-marking-inl.h b/src/heap/incremental-marking-inl.h |
index d523841a872e36e8247b7dd4d89df0d78260748c..fabf59d0167b462063913a5f3013d79c62bc43c5 100644 |
--- a/src/heap/incremental-marking-inl.h |
+++ b/src/heap/incremental-marking-inl.h |
@@ -105,13 +105,13 @@ void IncrementalMarking::BlackToGreyAndUnshift(HeapObject* obj, |
} |
} |
- heap_->mark_compact_collector()->marking_deque()->UnshiftGrey(obj); |
+ heap_->mark_compact_collector()->marking_deque()->Unshift(obj); |
} |
void IncrementalMarking::WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit) { |
Marking::WhiteToGrey(mark_bit); |
- heap_->mark_compact_collector()->marking_deque()->PushGrey(obj); |
+ heap_->mark_compact_collector()->marking_deque()->Push(obj); |
} |
} |
} // namespace v8::internal |