re PR fortran/92174 (runtime error: index 15 out of bounds for type 'gfc_expr *[15])
authorSteven G. Kargl <kargl@gcc.gnu.org>
Tue, 22 Oct 2019 18:18:59 +0000 (18:18 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Tue, 22 Oct 2019 18:18:59 +0000 (18:18 +0000)
2019-10-22  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/92174
* decl.c (attr_decl1): Move check for F2018:C822 from here ...
* array.c (gfc_set_array_spec): ... to here.

From-SVN: r277297

gcc/fortran/ChangeLog
gcc/fortran/array.c
gcc/fortran/decl.c

index 5ba62d251ef5008d71cea80aaa08a41f1cd68081..841aa66f378536e9b33706110cff017dcf7af100 100644 (file)
@@ -1,3 +1,9 @@
+2019-10-22  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/92174
+       * decl.c (attr_decl1): Move check for F2018:C822 from here ...
+       * array.c (gfc_set_array_spec): ... to here. 
+
 2019-10-18  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        PR fortran/69455
index 427110bee74de329dda8a94679036fdfd16b44f2..f0980dd9cefae783c2f807ff7a6e6034392ba6e4 100644 (file)
@@ -862,6 +862,10 @@ gfc_set_array_spec (gfc_symbol *sym, gfc_array_spec *as, locus *error_loc)
 
       sym->as->cotype = as->cotype;
       sym->as->corank = as->corank;
+      /* Check F2018:C822.  */
+      if (sym->as->rank + sym->as->corank > GFC_MAX_DIMENSIONS)
+       goto too_many;
+
       for (i = 0; i < as->corank; i++)
        {
          sym->as->lower[sym->as->rank + i] = as->lower[i];
@@ -880,6 +884,10 @@ gfc_set_array_spec (gfc_symbol *sym, gfc_array_spec *as, locus *error_loc)
       sym->as->cray_pointee = as->cray_pointee;
       sym->as->cp_was_assumed = as->cp_was_assumed;
 
+      /* Check F2018:C822.  */
+      if (sym->as->rank + sym->as->corank > GFC_MAX_DIMENSIONS)
+       goto too_many;
+
       for (i = 0; i < sym->as->corank; i++)
        {
          sym->as->lower[as->rank + i] = sym->as->lower[i];
@@ -894,6 +902,12 @@ gfc_set_array_spec (gfc_symbol *sym, gfc_array_spec *as, locus *error_loc)
 
   free (as);
   return true;
+
+too_many:
+
+  gfc_error ("rank + corank of %qs exceeds %d at %C", sym->name,
+            GFC_MAX_DIMENSIONS);
+  return false;
 }
 
 
index 59e0eac1f324edbddcfe5fb8526d10bcea835656..25a3967fac85e46408e3b40008293381b5bf52be 100644 (file)
@@ -8524,15 +8524,6 @@ attr_decl1 (void)
       goto cleanup;
     }
 
-  /* Check F2018:C822.  */
-  if (sym->attr.dimension && sym->attr.codimension
-      && sym->as && sym->as->rank + sym->as->corank > 15)
-    {
-      gfc_error ("rank + corank of %qs exceeds 15 at %C", sym->name);
-      m = MATCH_ERROR;
-      return m;
-    }
-
   if (sym->attr.cray_pointee && sym->as != NULL)
     {
       /* Fix the array spec.  */