| Index: runtime/vm/heap.cc
|
| diff --git a/runtime/vm/heap.cc b/runtime/vm/heap.cc
|
| index 0b2ea80c2eff93382b996fb09d923f2f2a47e668..338e3002d7c0f0c859f267986b91941a7f3ca01e 100644
|
| --- a/runtime/vm/heap.cc
|
| +++ b/runtime/vm/heap.cc
|
| @@ -75,7 +75,7 @@ uword Heap::AllocateOld(intptr_t size) {
|
| if (FLAG_verbose_gc) {
|
| PrintSizes();
|
| }
|
| - addr = old_space_->TryAllocate(size);
|
| + addr = old_space_->TryAllocate(size, PageSpace::kForceGrowth);
|
| if (addr == 0) {
|
| OS::PrintErr("Exhausted heap space, trying to allocate %d bytes.\n",
|
| size);
|
|
|