From 4bfd470b854a067ba8b391b755ff5b12cd3a86ee Mon Sep 17 00:00:00 2001 From: Tobias Burnus Date: Thu, 28 Jul 2011 00:33:00 +0200 Subject: [PATCH] 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 ++ gcc/testsuite/ChangeLog | 5 +++ gcc/testsuite/gfortran.dg/lto/pr45586-2_0.f90 | 34 +++++++++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 gcc/testsuite/gfortran.dg/lto/pr45586-2_0.f90 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index a2614a04672..275285e5360 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 b66941f366a..bec2a116752 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), diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b4f95b5a955..485057f80a2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-07-27 Tobias Burnus + + PR fortran/45586 + * gfortran.dg/lto/pr45586-2_0.f90: New. + 2011-07-27 Aldy Hernandez PR middle-end/49875 diff --git a/gcc/testsuite/gfortran.dg/lto/pr45586-2_0.f90 b/gcc/testsuite/gfortran.dg/lto/pr45586-2_0.f90 new file mode 100644 index 00000000000..52e2bb1e6d9 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/lto/pr45586-2_0.f90 @@ -0,0 +1,34 @@ +! { dg-lto-do link } +! +! PR fortran/45586 (comment 53) +! + +MODULE M1 + INTEGER, PARAMETER :: dp=8 + TYPE realspace_grid_type + REAL(KIND=dp), DIMENSION ( :, :, : ), ALLOCATABLE :: r + END TYPE realspace_grid_type + TYPE realspace_grid_p_type + TYPE(realspace_grid_type), POINTER :: rs_grid + END TYPE realspace_grid_p_type + TYPE realspaces_grid_p_type + TYPE(realspace_grid_p_type), DIMENSION(:), POINTER :: rs + END TYPE realspaces_grid_p_type +END MODULE + +MODULE M2 + USE M1 +CONTAINS + SUBROUTINE S1() + INTEGER :: i,j + TYPE(realspaces_grid_p_type), DIMENSION(:), POINTER :: rs_gauge + REAL(dp), DIMENSION(:, :, :), POINTER :: y + y=>rs_gauge(i)%rs(j)%rs_grid%r + END SUBROUTINE +END MODULE + +USE M2 + CALL S1() +END + +! { dg-final { cleanup-modules "m1 m2" } } -- 2.30.2