From 4bfd470b854a067ba8b391b755ff5b12cd3a86ee Mon Sep 17 00:00:00 2001 From: Tobias Burnus Date: Thu, 28 Jul 2011 00:33:00 +0200 Subject: re PR fortran/45586 (ICE non-trivial conversion at assignment) 2011-07-27 Tobias Burnus PR fortran/45586 * trans-types.c (gfc_get_derived_type): Ensure that pointer component types are marked as nonrestricted. 2011-07-27 Tobias Burnus PR fortran/45586 * gfortran.dg/lto/pr45586-2_0.f90: New. From-SVN: r176852 --- gcc/fortran/ChangeLog | 6 ++++++ gcc/fortran/trans-types.c | 3 +++ 2 files changed, 9 insertions(+) (limited to 'gcc/fortran') diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index a2614a0..275285e 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2011-07-27 Tobias Burnus + + PR fortran/45586 + * trans-types.c (gfc_get_derived_type): Ensure that pointer + component types are marked as nonrestricted. + 2011-07-27 Daniel Carrera PR fortran/49755 diff --git a/gcc/fortran/trans-types.c b/gcc/fortran/trans-types.c index b66941f..bec2a11 100644 --- a/gcc/fortran/trans-types.c +++ b/gcc/fortran/trans-types.c @@ -2421,6 +2421,9 @@ gfc_get_derived_type (gfc_symbol * derived) && !c->attr.proc_pointer) field_type = build_pointer_type (field_type); + if (c->attr.pointer) + field_type = gfc_nonrestricted_type (field_type); + /* vtype fields can point to different types to the base type. */ if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.vtype) field_type = build_pointer_type_for_mode (TREE_TYPE (field_type), -- cgit v1.1