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

Unified Diff: src/incremental-marking.h

Issue 7322012: Fix compilation on ARM and x64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 5 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
Index: src/incremental-marking.h
diff --git a/src/incremental-marking.h b/src/incremental-marking.h
index 33ec1c93b3f00e32ee53e9b740a3062d6403071a..a97ba793176516517255e30417f2c22a126117d3 100644
--- a/src/incremental-marking.h
+++ b/src/incremental-marking.h
@@ -160,6 +160,8 @@ class IncrementalMarking {
MarkingDeque* marking_deque() { return &marking_deque_; }
+ bool IsCompacting() { return IsMarking() && is_compacting_; }
+
private:
void set_should_hurry(bool val) {
should_hurry_ = val;

Powered by Google App Engine
This is Rietveld 408576698