Reviewers: posva, Description: Revert changes to src\assembler-arm.h which slipped into a previous checkin breaking the ARM build.
Please review this at http://codereview.chromium.org/2958 Affected files: M src/assembler-arm.h Index: src/assembler-arm.h =================================================================== --- src/assembler-arm.h (revision 335) +++ src/assembler-arm.h (working copy) @@ -645,7 +645,9 @@ int pc_offset() const { return pc_ - buffer_; } int last_position() const { return last_position_; } - int last_statement_position() const { return last_statement_position_; } + bool last_position_is_statement() const { + return last_position_is_statement_; + } protected: int buffer_space() const { return reloc_info_writer.pos() - pc_; } @@ -745,8 +747,8 @@ int last_bound_pos_; // source position information - int last_statement_position_; int last_position_; + bool last_position_is_statement_; // Code emission inline void CheckBuffer(); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
