Reviewers: Sven Panne,
Description:
Fix clang compilation
BUG=none
[email protected]
LOG=n
Please review this at https://codereview.chromium.org/621673003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M src/heap/spaces.cc
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;
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.