PR 83070 Fix -Wsign-compare warning
authorJanne Blomqvist <jb@gcc.gnu.org>
Wed, 22 Nov 2017 08:51:21 +0000 (10:51 +0200)
committerJanne Blomqvist <jb@gcc.gnu.org>
Wed, 22 Nov 2017 08:51:21 +0000 (10:51 +0200)
2017-11-22  Janne Blomqvist  <jb@gcc.gnu.org>

        PR libfortran/83070
        * intrinsics/eoshift0.c (eoshift0): Fix -Wsign-compare warning by
        making a_ex and r_ex index_type instead of size_t.

From-SVN: r255045

libgfortran/ChangeLog
libgfortran/intrinsics/eoshift0.c

index f37850c4505591ee492be37a7430eb08db8fd115..2c7b3f1e00fe70592261b91d3133cdf1ad9a34d4 100644 (file)
@@ -1,3 +1,9 @@
+2017-11-22  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       PR libfortran/83070
+       * intrinsics/eoshift0.c (eoshift0): Fix -Wsign-compare warning by
+       making a_ex and r_ex index_type instead of size_t.
+
 2017-11-20  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
        PR libgfortran/78549
index 24a23c30fda11f79ee901295ddcf00400e3c62b4..3dae88c3757cb33af69545be904f8c3291a623e6 100644 (file)
@@ -107,7 +107,7 @@ eoshift0 (gfc_array_char * ret, const gfc_array_char * array,
   if (which > 0)
     {
       /* Test if both ret and array are contiguous.  */
-      size_t r_ex, a_ex;
+      index_type r_ex, a_ex;
       r_ex = 1;
       a_ex = 1;
       do_blocked = true;