primary.c (match_real_constant): Remove shadowing local vars.
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Thu, 3 Oct 2019 17:03:43 +0000 (17:03 +0000)
committerBernd Edlinger <edlinger@gcc.gnu.org>
Thu, 3 Oct 2019 17:03:43 +0000 (17:03 +0000)
2019-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        * primary.c (match_real_constant): Remove shadowing local vars.
        Rename local vars.  Fix undefined behavior in loop termination.
        (gfc_convert_to_structure_constructor): Rename local var.

From-SVN: r276518

gcc/fortran/ChangeLog
gcc/fortran/primary.c

index 9367322df6f4d8e36c91764f9bfcf3229d073f5b..f7414b6786f13f7966d8231c92c50f734a8e6138 100644 (file)
@@ -1,3 +1,9 @@
+2019-10-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>
+
+       * primary.c (match_real_constant): Remove shadowing local vars.
+       Rename local vars.  Fix undefined behavior in loop termination.
+       (gfc_convert_to_structure_constructor): Rename local var.
+
 2019-10-03  Thomas Koenig <tkoenig@gcc.gnu.org>
 
        PR fortran/84487
index 7c65b2e604b4b4610f011adb2b006bd1b42d8ba2..6b6c7d2481fe3fa260f676cee8458e4e6b02cf94 100644 (file)
@@ -789,16 +789,17 @@ done:
   if (warn_conversion_extra)
     {
       mpfr_t r;
-      char *c, *p;
+      char *c1;
       bool did_break;
 
-      c = strchr (buffer, 'e');
-      if (c == NULL)
-       c = buffer + strlen(buffer);
+      c1 = strchr (buffer, 'e');
+      if (c1 == NULL)
+       c1 = buffer + strlen(buffer);
 
       did_break = false;
-      for (p = c - 1; p >= buffer; p--)
+      for (p = c1; p > buffer;)
        {
+         p--;
          if (*p == '.')
            continue;
 
@@ -3099,21 +3100,21 @@ gfc_convert_to_structure_constructor (gfc_expr *e, gfc_symbol *sym, gfc_expr **c
          && actual->expr->ts.type == BT_CHARACTER
          && actual->expr->expr_type == EXPR_CONSTANT)
        {
-         ptrdiff_t c, e;
+         ptrdiff_t c, e1;
          c = gfc_mpz_get_hwi (this_comp->ts.u.cl->length->value.integer);
-         e = actual->expr->value.character.length;
+         e1 = actual->expr->value.character.length;
 
-         if (c != e)
+         if (c != e1)
            {
              ptrdiff_t i, to;
              gfc_char_t *dest;
              dest = gfc_get_wide_string (c + 1);
 
-             to = e < c ? e : c;
+             to = e1 < c ? e1 : c;
              for (i = 0; i < to; i++)
                dest[i] = actual->expr->value.character.string[i];
 
-             for (i = e; i < c; i++)
+             for (i = e1; i < c; i++)
                dest[i] = ' ';
 
              dest[c] = '\0';
@@ -3122,11 +3123,11 @@ gfc_convert_to_structure_constructor (gfc_expr *e, gfc_symbol *sym, gfc_expr **c
              actual->expr->value.character.length = c;
              actual->expr->value.character.string = dest;
 
-             if (warn_line_truncation && c < e)
+             if (warn_line_truncation && c < e1)
                gfc_warning_now (OPT_Wcharacter_truncation,
                                 "CHARACTER expression will be truncated "
                                 "in constructor (%ld/%ld) at %L", (long int) c,
-                                (long int) e, &actual->expr->where);
+                                (long int) e1, &actual->expr->where);
            }
        }