Reviewers: ulan, Erik Corry,

Description:
Remove Android specifc LUMP_OF_MEMORY.

The existing 128KB is too small - the default 1MB is more appropriate.

Please review this at http://codereview.chromium.org/10541053/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/heap.cc


Index: src/heap.cc
===================================================================
--- src/heap.cc (revision 11732)
+++ src/heap.cc (working copy)
@@ -66,10 +66,7 @@
     : isolate_(NULL),
// semispace_size_ should be a power of 2 and old_generation_size_ should be
 // a multiple of Page::kPageSize.
-#if defined(ANDROID)
-#define LUMP_OF_MEMORY (128 * KB)
-      code_range_size_(0),
-#elif defined(V8_TARGET_ARCH_X64)
+#if defined(V8_TARGET_ARCH_X64)
 #define LUMP_OF_MEMORY (2 * MB)
       code_range_size_(512*MB),
 #else


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to