229a230,234
> * Get the end address of the range.
> */
> Addr end() const { return _end; }
>
> /**
365a371,386
> bool operator==(const AddrRange& r) const
> {
> if (_start != r._start) return false;
> if (_end != r._end) return false;
> if (intlvBits != r.intlvBits) return false;
> if (intlvBits != 0) {
> if (intlvHighBit != r.intlvHighBit) return false;
> if (intlvMatch != r.intlvMatch) return false;
> }
> return true;
> }
>
> bool operator!=(const AddrRange& r) const
> {
> return !(*this == r);
> }