| 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();
|
|
|