Sandipan Das has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/30474 )

Change subject: base: Fix build errors with gcc 10.x
......................................................................

base: Fix build errors with gcc 10.x

This fixes conditions that perform a redudant check to
see if an unsigned value is greater than or equal to
zero. With gcc 10.x, this generates the following error
because of implicit usage of the "-Werror=type-limits"
flag.

"comparison of unsigned expression in '>= 0' is always true"

Change-Id: Ib1a88035ef5fba410d18de0adf614db4bc634faf
Signed-off-by: Sandipan Das <sandi...@linux.ibm.com>
---
M src/base/statistics.hh
1 file changed, 4 insertions(+), 4 deletions(-)



diff --git a/src/base/statistics.hh b/src/base/statistics.hh
index 8f665fe..ee541fb 100644
--- a/src/base/statistics.hh
+++ b/src/base/statistics.hh
@@ -1161,7 +1161,7 @@
     Proxy
     operator[](off_type index)
     {
-        assert (index >= 0 && index < size());
+        assert (index < size());
         return Proxy(this->self(), index);
     }
 };
@@ -1235,7 +1235,7 @@
     ScalarProxy<Stat>
     operator[](off_type index)
     {
-        assert (index >= 0 && index < size());
+        assert (index < size());
         return ScalarProxy<Stat>(stat, offset + index);
     }

@@ -1311,7 +1311,7 @@
     operator[](off_type index)
     {
         off_type offset = index * y;
-        assert (index >= 0 && offset + y <= size());
+        assert (offset + y <= size());
         return Proxy(this->self(), offset, y);
     }

@@ -1995,7 +1995,7 @@

     Proxy operator[](off_type index)
     {
-        assert(index >= 0 && index < size());
+        assert(index < size());
         return Proxy(this->self(), index);
     }


--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/30474
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: Ib1a88035ef5fba410d18de0adf614db4bc634faf
Gerrit-Change-Number: 30474
Gerrit-PatchSet: 1
Gerrit-Owner: Sandipan Das <sandi...@linux.ibm.com>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to