| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index cd1af05d578d59dd268d3adfc289388e143cf551..95cd6a1354f63e724c49823bf682ab40436ef839 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -9049,7 +9049,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_AllocateInOldPointerSpace) {
|
| Heap* heap = isolate->heap();
|
| Object* allocation;
|
| { MaybeObject* maybe_allocation =
|
| - heap->old_pointer_space()->AllocateRaw(size);
|
| + heap->old_pointer_space()->AllocateRaw<FreeList::WORST_FIT>(size);
|
| if (maybe_allocation->ToObject(&allocation)) {
|
| heap->CreateFillerObjectAt(HeapObject::cast(allocation)->address(), size);
|
| }
|
|
|