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

Unified Diff: src/spaces.h

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 | « src/mark-compact.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/spaces.h
diff --git a/src/spaces.h b/src/spaces.h
index 84b888913fe2b12b4191c698f239ac7d32fae87f..f9f68d36eb8b7622ebefed0f56c5e896eaa84357 100644
--- a/src/spaces.h
+++ b/src/spaces.h
@@ -193,9 +193,9 @@ class Bitmap {
cells()[start_cell] &= ~start_mask;
if (end_mask != 0) cells()[end_cell] &= ~end_mask;
- for(uint32_t cell = start_cell + 1, last_cell = end_cell - 1;
- cell <= last_cell;
- cell++) {
+ for (uint32_t cell = start_cell + 1, last_cell = end_cell - 1;
+ cell <= last_cell;
+ cell++) {
cells()[cell] = 0;
}
}
« no previous file with comments | « src/mark-compact.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698