From 942323000bbc5bde768c0f651d62af5eea462c1d Mon Sep 17 00:00:00 2001 From: Paul Thomas Date: Fri, 1 Nov 2013 06:56:41 +0000 Subject: [PATCH] re PR fortran/57893 (Crash for allocatable character string during compilation.) 2013-11-01 Paul Thomas PR fortran/57893 * gfortran.dg/unlimited_polymorphic_13.f90 : Break up select type block. From-SVN: r204286 --- gcc/testsuite/ChangeLog | 6 ++++++ gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90 | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b231dc89ebd..03ad579ad31 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2013-11-01 Paul Thomas + + PR fortran/57893 + * gfortran.dg/unlimited_polymorphic_13.f90 : Break up select + type block. + 2013-10-31 Jakub Jelinek * g++.dg/gomp/simd-1.C: New test. diff --git a/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90 b/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90 index 10f644535b2..0e27b172fb8 100644 --- a/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90 +++ b/gcc/testsuite/gfortran.dg/unlimited_polymorphic_13.f90 @@ -37,14 +37,22 @@ contains end select if (storage_size(o) /= sz) call abort() + +! Break up the SELECT TYPE to pre-empt collisions in the value of 'cn' select type (o) type is (complex(c1)) if (storage_size(o) /= sz) call abort() + end select + select type (o) type is (complex(c2)) if (storage_size(o) /= sz) call abort() + end select + select type (o) type is (complex(c3)) if (storage_size(o) /= sz) call abort() - type is (complex(c4)) + end select + select type (o) + type is (complex(c4)) if (storage_size(o) /= sz) call abort() end select end subroutine s -- 2.30.2