From: Erik Edelmann Date: Wed, 19 Oct 2005 22:20:56 +0000 (+0300) Subject: re PR fortran/21625 ([4.0 only] Nested derived type pointer component not initialized... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d54aaaeb7237a43a29b51baabbef74c09c305fc;p=gcc.git re PR fortran/21625 ([4.0 only] Nested derived type pointer component not initialized on ALLOCATE) PR fortran/21625 * gfortran.fg/der_init_1.f90: New. From-SVN: r105643 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d511f9a1068..7a536a72c18 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-10-20 Erik Edelmann + + PR fortran/21625 + * gfortran.fg/der_init_1.f90: New. + 2005-10-19 Ulrich Weigand * gcc.dg/20050824-1.c (f): Clobber %r13 and %r14 only on s390x. diff --git a/gcc/testsuite/gfortran.dg/derived_init_1.f90 b/gcc/testsuite/gfortran.dg/derived_init_1.f90 new file mode 100644 index 00000000000..bdd7d3773d7 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/derived_init_1.f90 @@ -0,0 +1,32 @@ +! { dg-do run } +! Check that allocatable/pointer variables of derived types with initialized +! components are are initialized when allocated +! PR 21625 +program test + + implicit none + type :: t + integer :: a = 3 + end type t + type :: s + type(t), pointer :: p(:) + type(t), pointer :: p2 + end type s + type(t), pointer :: p + type(t), allocatable :: q(:,:) + type(s) :: z + type(s) :: x(2) + + allocate(p, q(2,2)) + if (p%a /= 3) call abort() + if (any(q(:,:)%a /= 3)) call abort() + + allocate(z%p2, z%p(2:3)) + if (z%p2%a /= 3) call abort() + if (any(z%p(:)%a /= 3)) call abort() + + allocate(x(1)%p2, x(1)%p(2)) + if (x(1)%p2%a /= 3) call abort() + if (any(x(1)%p(:)%a /= 3)) call abort() +end program test +