| Index: src/virtual-frame.cc
|
| ===================================================================
|
| --- src/virtual-frame.cc (revision 1834)
|
| +++ src/virtual-frame.cc (working copy)
|
| @@ -507,4 +507,14 @@
|
| return true;
|
| }
|
|
|
| +
|
| +// Specialization of List::ResizeAdd to non-inlined version for FrameElements.
|
| +// The function ResizeAdd becomes a real function, whose implementation is the
|
| +// inlined ResizeAddInternal.
|
| +template <>
|
| +void List<FrameElement,
|
| + FreeStoreAllocationPolicy>::ResizeAdd(const FrameElement& element) {
|
| + ResizeAddInternal(element);
|
| +}
|
| +
|
| } } // namespace v8::internal
|
|
|