read-rtl.c (rtx_reader::read_rtx_code): Avoid -Wsign-compare warning.
authorJakub Jelinek <jakub@redhat.com>
Fri, 6 Jan 2017 18:40:31 +0000 (19:40 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 6 Jan 2017 18:40:31 +0000 (19:40 +0100)
* read-rtl.c (rtx_reader::read_rtx_code): Avoid -Wsign-compare
warning.

From-SVN: r244178

gcc/ChangeLog
gcc/read-rtl.c

index 5f4577d47358a7ad60a58ac23cbddb83c8c8e14f..236d40dd36a8475d3a9eb229127ff7d85aba52eb 100644 (file)
@@ -1,3 +1,8 @@
+2017-01-06  Jakub Jelinek  <jakub@redhat.com>
+
+       * read-rtl.c (rtx_reader::read_rtx_code): Avoid -Wsign-compare
+       warning.
+
 2017-01-06  Andre Vieira  <andre.simoesdiasvieira@arm.com>
 
        * config/arm/arm.md (<mcrr>): New.
index e9c806828003968c2bb32df198cdb0ef00f35b5f..2a8650b3afa266db3ea1f4c051a75b22db761fc1 100644 (file)
@@ -1255,7 +1255,7 @@ rtx_reader::read_rtx_code (const char *code_name)
   if (strcmp (code_name, "reuse_rtx") == 0)
     {
       read_name (&name);
-      long idx = atoi (name.string);
+      unsigned idx = atoi (name.string);
       /* Look it up by ID.  */
       gcc_assert (idx < m_reuse_rtx_by_id.length ());
       return_rtx = m_reuse_rtx_by_id[idx];