| Index: src/heap/heap-inl.h
|
| diff --git a/src/heap/heap-inl.h b/src/heap/heap-inl.h
|
| index d3fbcd62c4ead923b0b2a6731440ebe8e76ecf05..54682d3a007a0b2507b0d55cb150a3fbeea07117 100644
|
| --- a/src/heap/heap-inl.h
|
| +++ b/src/heap/heap-inl.h
|
| @@ -294,6 +294,9 @@ AllocationResult Heap::CopyFixedDoubleArray(FixedDoubleArray* src) {
|
| return CopyFixedDoubleArrayWithMap(src, src->map());
|
| }
|
|
|
| +AllocationResult Heap::AllocateFixedArray(int length, PretenureFlag pretenure) {
|
| + return AllocateFixedArrayWithFiller(length, pretenure, undefined_value());
|
| +}
|
|
|
| AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space,
|
| AllocationAlignment alignment) {
|
|
|