Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: src/heap/heap.cc

Issue 2377273002: [heap] Always use getter when accessing MarkingDeque (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/heap/mark-compact.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index 217c27b1349d40b1d2ea9d59357b86065804c376..8697c761e876633b7332a600f53a358f2ea8f4f7 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -962,7 +962,7 @@ bool Heap::CollectGarbage(GarbageCollector collector,
!incremental_marking()->should_hurry() && FLAG_incremental_marking &&
OldGenerationSpaceAvailable() <= 0) {
if (!incremental_marking()->IsComplete() &&
- !mark_compact_collector()->marking_deque_.IsEmpty() &&
+ !mark_compact_collector()->marking_deque()->IsEmpty() &&
!FLAG_gc_global) {
if (FLAG_trace_incremental_marking) {
isolate()->PrintWithTimestamp(
« no previous file with comments | « no previous file | src/heap/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698