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

Unified Diff: src/mark-compact.cc

Issue 6193002: Fix presubmit issues introduced by r6230. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 11 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/spaces.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mark-compact.cc
diff --git a/src/mark-compact.cc b/src/mark-compact.cc
index b04aa310b894c2526ba636201b091d646f9700c7..4a29c21df74c4c60ed4afaef491f45d42bd6bb17 100644
--- a/src/mark-compact.cc
+++ b/src/mark-compact.cc
@@ -1202,7 +1202,8 @@ void MarkCompactCollector::MarkObjectGroups() {
bool group_marked = false;
for (int j = 0; j < objects.length(); j++) {
Object* object = *objects[j];
- if (object->IsHeapObject() && Marking::IsMarked(HeapObject::cast(object))) {
+ if (object->IsHeapObject()
+ && Marking::IsMarked(HeapObject::cast(object))) {
group_marked = true;
break;
}
« no previous file with comments | « no previous file | src/spaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698