| Index: regexp2000/src/factory.cc
|
| diff --git a/regexp2000/src/factory.cc b/regexp2000/src/factory.cc
|
| index 10abf2c45f4067ccd7c805523759aad992ea2287..d49a88b0147c9da8bfea30323f907a7cfffdaa47 100644
|
| --- a/regexp2000/src/factory.cc
|
| +++ b/regexp2000/src/factory.cc
|
| @@ -170,9 +170,9 @@ Handle<Proxy> Factory::NewProxy(const AccessorDescriptor* desc) {
|
| }
|
|
|
|
|
| -Handle<ByteArray> Factory::NewByteArray(int length) {
|
| +Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) {
|
| ASSERT(0 <= length);
|
| - CALL_HEAP_FUNCTION(Heap::AllocateByteArray(length), ByteArray);
|
| + CALL_HEAP_FUNCTION(Heap::AllocateByteArray(length, pretenure), ByteArray);
|
| }
|
|
|
|
|
|
|