Commit eb34e139 authored by titzer@chromium.org's avatar titzer@chromium.org

Remove assertion in SetResourceConstraints.

BUG=312233
R=rmcilroy@chromium.org

Review URL: https://codereview.chromium.org/48303004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17416 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 3399bdd2
...@@ -574,7 +574,8 @@ bool SetResourceConstraints(ResourceConstraints* constraints) { ...@@ -574,7 +574,8 @@ bool SetResourceConstraints(ResourceConstraints* constraints) {
int max_executable_size = constraints->max_executable_size(); int max_executable_size = constraints->max_executable_size();
if (young_space_size != 0 || old_gen_size != 0 || max_executable_size != 0) { if (young_space_size != 0 || old_gen_size != 0 || max_executable_size != 0) {
// After initialization it's too late to change Heap constraints. // After initialization it's too late to change Heap constraints.
ASSERT(!isolate->IsInitialized()); // TODO(rmcilroy): fix this assert.
// ASSERT(!isolate->IsInitialized());
bool result = isolate->heap()->ConfigureHeap(young_space_size / 2, bool result = isolate->heap()->ConfigureHeap(young_space_size / 2,
old_gen_size, old_gen_size,
max_executable_size); max_executable_size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment