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

Unified Diff: src/heap/spaces.cc

Issue 621673003: Fix clang compilation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/spaces.cc
diff --git a/src/heap/spaces.cc b/src/heap/spaces.cc
index 6794a4e92e6ea7c730b678feaa514654115cd573..1d56be7b220b8883f40d536b9e7307fd45aa06fd 100644
--- a/src/heap/spaces.cc
+++ b/src/heap/spaces.cc
@@ -110,7 +110,7 @@ bool CodeRange::SetUp(size_t requested) {
}
}
- if (requested < kMinimumCodeRangeSize) {
+ if (requested <= kMinimumCodeRangeSize) {
requested = kMinimumCodeRangeSize;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698