Reviewers: Hannes Payer,

Description:
Change size of old pointer space first page back to 112KB (as it was before
r23241)

This broke ReleaseOverReservedPages on Windows ia32.

TBR=hpa...@chromium.org

Please review this at https://codereview.chromium.org/493703002/

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 1ed885ccf3e0d7cd1a73de51e2b1631675d0d773..72f6b5e7c9088bd44004ea00db6816cf8411d9f3 100644
--- a/src/heap/spaces.cc
+++ b/src/heap/spaces.cc
@@ -996,7 +996,7 @@ intptr_t PagedSpace::SizeOfFirstPage() {
   int size = 0;
   switch (identity()) {
     case OLD_POINTER_SPACE:
-      size = (96 + constant_pool_delta) * kPointerSize * KB;
+      size = (112 + constant_pool_delta) * kPointerSize * KB;
       break;
     case OLD_DATA_SPACE:
       size = 192 * KB;


--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to