Chromium Code Reviews| Index: runtime/vm/assembler_mips.h |
| =================================================================== |
| --- runtime/vm/assembler_mips.h (revision 24615) |
| +++ runtime/vm/assembler_mips.h (working copy) |
| @@ -70,6 +70,10 @@ |
| Register base() const { return base_; } |
| int32_t offset() const { return offset_; } |
| + bool Equals(const Address& other) { |
| + return (base_ == other.base_) && (offset_ == other.offset_); |
| + } |
| + |
| private: |
| Register base_; |
| int32_t offset_; |