Chromium Code Reviews| Index: src/factory.cc |
| =================================================================== |
| --- src/factory.cc (revision 3015) |
| +++ src/factory.cc (working copy) |
| @@ -101,8 +101,11 @@ |
| Handle<String> Factory::NewConsString(Handle<String> first, |
| - Handle<String> second) { |
| - CALL_HEAP_FUNCTION(Heap::AllocateConsString(*first, *second), String); |
| + Handle<String> second, |
| + PretenureFlag pretenure) { |
| + CALL_HEAP_FUNCTION(Heap::AllocateConsString(*first, |
| + *second, |
| + pretenure), String); |
| } |