From: Thomas Koenig Date: Sun, 7 Aug 2016 15:25:56 +0000 (+0000) Subject: re PR fortran/71961 (178.galgel in SPEC CPU 2000 is miscompiled) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1f7083bd1236a163fe798b2734dd3c3367a1d47;p=gcc.git re PR fortran/71961 (178.galgel in SPEC CPU 2000 is miscompiled) 2016-08-07 Thomas Koenig PR fortran/71961 * gfortran.dg/pr70040.f90: New testcase. From-SVN: r239221 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bc95f00edaa..b2f07c99f1d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-08-07 Thomas Koenig + + PR fortran/71961 + * gfortran.dg/pr70040.f90: New testcase. + 2016-08-07 Thomas Koenig PR fortran/71961 diff --git a/gcc/testsuite/gfortran.dg/pr70040.f90 b/gcc/testsuite/gfortran.dg/pr70040.f90 new file mode 100644 index 00000000000..080083e3a5d --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr70040.f90 @@ -0,0 +1,19 @@ +! { dg-do compile } +! PR 70040 - used to cause an ICE. +! Test case by Martin Reinecke +program bugrep + implicit none + type :: string + character (len=:), allocatable :: s + end type + + integer l + type(string), allocatable, dimension(:) :: foo + character(len=:),allocatable ::tmp + allocate(foo(20)) + do l= 1, 20 + tmp = foo(5)%s + foo(5)%s = foo(l)%s + foo(l)%s = tmp + enddo +end program