From: Steven G. Kargl Date: Sat, 22 Dec 2018 23:23:02 +0000 (+0000) Subject: re PR fortran/85798 (ICE in get_array_index, at fortran/data.c:69) X-Git-Tag: releases/gcc-7.5.0~705 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ae9367ba2d87a28cf2b783b705661a5a5b4d108;p=thirdparty%2Fgcc.git re PR fortran/85798 (ICE in get_array_index, at fortran/data.c:69) 2018-12-22 Steven G . Kargl PR fortran/85798 * decl.c (gfc_match_data): If a component of a derived type entity appears in data statement, check that does not have the allocatable attribute. 2018-12-22 Steven G . Kargl PR fortran/85798 * gfortran.dg/pr85798.f90: New test. From-SVN: r267362 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 3d391b0680ea..b52c215067f1 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2018-12-22 Steven G . Kargl + + PR fortran/85798 + * decl.c (gfc_match_data): If a component of a derived type entity + appears in data statement, check that does not have the allocatable + attribute. + 2018-12-22 Thomas Koenig Backport from trunk diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c index f7b597bc3fd8..42879f063e2c 100644 --- a/gcc/fortran/decl.c +++ b/gcc/fortran/decl.c @@ -552,6 +552,7 @@ match gfc_match_data (void) { gfc_data *new_data; + gfc_expr *e; match m; /* Before parsing the rest of a DATA statement, check F2008:c1206. */ @@ -588,6 +589,30 @@ gfc_match_data (void) goto cleanup; } + /* Check for an entity with an allocatable component, which is not + allowed. */ + e = new_data->var->expr; + if (e) + { + bool invalid; + + invalid = false; + for (gfc_ref *ref = e->ref; ref; ref = ref->next) + if ((ref->type == REF_COMPONENT + && ref->u.c.component->attr.allocatable) + || (ref->type == REF_ARRAY + && e->symtree->n.sym->attr.pointer != 1 + && ref->u.ar.as && ref->u.ar.as->type == AS_DEFERRED)) + invalid = true; + + if (invalid) + { + gfc_error ("Allocatable component or deferred-shaped array " + "near %C in DATA statement"); + goto cleanup; + } + } + m = top_val_list (new_data); if (m != MATCH_YES) goto cleanup; diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fd74e371c437..9e983691fdcc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-12-22 Steven G . Kargl + + PR fortran/85798 + * gfortran.dg/pr85798.f90: New test. + 2018-12-22 Thomas Koenig Backport from trunk diff --git a/gcc/testsuite/gfortran.dg/pr85798.f90 b/gcc/testsuite/gfortran.dg/pr85798.f90 new file mode 100644 index 000000000000..1cc224d1fef4 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr85798.f90 @@ -0,0 +1,14 @@ +! { dg-do compile } +program p + type t + integer, allocatable :: a(:) + end type + type u + real x + type(t) y + end type + type(t) :: z + type(u) :: q + data z%a(1) / 789 / ! { dg-error "Allocatable component" } + data q%y%a(1) / 789 / ! { dg-error "Allocatable component" } +end