base: addr range: slight change to validity check
authorNilay Vaish <nilay@cs.wisc.edu>
Sat, 11 Oct 2014 20:02:22 +0000 (15:02 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Sat, 11 Oct 2014 20:02:22 +0000 (15:02 -0500)
The validity check is being changed from < to <= since the end of the range
is considered to be a part of it.

src/base/addr_range.hh

index 7f275e5a941b3af206ad4fde997e88215832f4f0..df4afab9ecf8d573f4b22ed580b052f9791bfcfa 100644 (file)
@@ -58,6 +58,7 @@ class AddrRange
   private:
 
     /// Private fields for the start and end of the range
+    /// Both _start and _end are part of the range.
     Addr _start;
     Addr _end;
 
@@ -166,7 +167,7 @@ class AddrRange
     /**
      * Determine if the range is valid.
      */
-    bool valid() const { return _start < _end; }
+    bool valid() const { return _start <= _end; }
 
     /**
      * Get the start address of the range.