PR fortran/98284 - ICE in get_array_index
authorHarald Anlauf <anlauf@gmx.de>
Wed, 16 Dec 2020 16:25:06 +0000 (17:25 +0100)
committerHarald Anlauf <anlauf@gmx.de>
Wed, 16 Dec 2020 16:25:06 +0000 (17:25 +0100)
Reject DATA elements with the ALLOCATABLE attribute also when they are
components of a derived type.

gcc/fortran/ChangeLog:

PR fortran/98284
* resolve.c (check_data_variable): Reject DATA elements with the
ALLOCATABLE attribute.

gcc/testsuite/ChangeLog:

PR fortran/98284
* gfortran.dg/pr98284.f90: New test.

gcc/fortran/resolve.c
gcc/testsuite/gfortran.dg/pr98284.f90 [new file with mode: 0644]

index 327dffbebf201d229cc221a75cbb27e3bbd0024d..05a5e43c90b4efa5fff4d50edd734422672b7187 100644 (file)
@@ -16169,6 +16169,13 @@ check_data_variable (gfc_data_variable *var, locus *where)
              return false;
            }
        }
+
+      if (ref->type == REF_COMPONENT && ref->u.c.component->attr.allocatable)
+       {
+         gfc_error ("DATA element %qs at %L cannot have the ALLOCATABLE "
+                    "attribute", ref->u.c.component->name, &e->where);
+         return false;
+       }
     }
 
   if (e->rank == 0 || has_pointer)
diff --git a/gcc/testsuite/gfortran.dg/pr98284.f90 b/gcc/testsuite/gfortran.dg/pr98284.f90
new file mode 100644 (file)
index 0000000..aa4b95c
--- /dev/null
@@ -0,0 +1,12 @@
+! { dg-do compile }
+! PR fortran/98284 - ICE in get_array_index
+
+program p
+  implicit none
+  type t
+     integer, allocatable :: h(:)
+  end type t
+  type(t) :: u
+  integer :: i
+  data (u% h(i),i=1,8) /8*1/ ! { dg-error "cannot have the ALLOCATABLE attribute" }
+end