| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 69acb4a55e30354ae70061a7cf9c7ee88d99cb73..5b96d1fd464083359c935410293bc96f6bdc4009 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -2433,7 +2433,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_RegExpConstructResult) {
|
| }
|
| Object* new_object;
|
| { MaybeObject* maybe_new_object =
|
| - isolate->heap()->AllocateFixedArrayWithHoles(elements_count);
|
| + isolate->heap()->AllocateFixedArray(elements_count);
|
| if (!maybe_new_object->ToObject(&new_object)) return maybe_new_object;
|
| }
|
| FixedArray* elements = FixedArray::cast(new_object);
|
|
|