LGTM. On Mon, Mar 23, 2009 at 2:50 PM, <[email protected]> wrote:
> Reviewers: Kevin Millikin, > > Description: > Fix build > [email protected] > > Please review this at http://codereview.chromium.org/52013 > > SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ > > Affected files: > M src/virtual-frame.h > > > Index: src/virtual-frame.h > =================================================================== > --- src/virtual-frame.h (revision 1574) > +++ src/virtual-frame.h (working copy) > @@ -165,6 +165,11 @@ > // Used to initialize invalid, memory, and register elements. > inline void Initialize(Type type, Register reg, SyncFlag is_synced); > > + void set_index(int new_index) { > + ASSERT(is_copy()); > + data_.index_ = new_index; > + } > + > friend class VirtualFrame; > }; > > > > --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
