diff options
author | Paul Thomas <pault@gcc.gnu.org> | 2006-09-12 19:38:48 +0000 |
---|---|---|
committer | Paul Thomas <pault@gcc.gnu.org> | 2006-09-12 19:38:48 +0000 |
commit | 6df7764520213e8621ed0586bfc0c5759e285463 (patch) | |
tree | 5987b6acf46bbc4bbacb58d9ed11e20a4dc12d06 /gcc | |
parent | 66cccea6712ed41290eb0d3103d7dd6e94322d3b (diff) | |
download | gcc-6df7764520213e8621ed0586bfc0c5759e285463.zip gcc-6df7764520213e8621ed0586bfc0c5759e285463.tar.gz gcc-6df7764520213e8621ed0586bfc0c5759e285463.tar.bz2 |
re PR fortran/28971 (ICE: Segmentation fault on valid code)
2006-09-12 Paul Thomas <pault@gcc.gnu.org>
PR fortran/28971
gfortran.dg/pr28971.f90: New test to act as a backstop in case
this undiagnosed regression reappears.
From-SVN: r116904
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/pr28971.f90 | 20 |
2 files changed, 26 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 885bcd7..7764fb0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-09-12 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/28971 + gfortran.dg/pr28971.f90: New test to act as a backstop in case + this undiagnosed regression reappears. + 2006-09-12 Kazu Hirata <kazu@codesourcery.com> * lib/c-torture.exp (c-torture-compile, c-torture-execute): diff --git a/gcc/testsuite/gfortran.dg/pr28971.f90 b/gcc/testsuite/gfortran.dg/pr28971.f90 new file mode 100644 index 0000000..23045fc --- /dev/null +++ b/gcc/testsuite/gfortran.dg/pr28971.f90 @@ -0,0 +1,20 @@ +! { dg-do compile } +! This caused an ICE for gfortrans of July 2006 vintage. It was a regression +! that "fixed" itself. The cause and the fix are mysteries. This test is intended +! to signal any further regression, should it occur. +! +! Contributed by Oskar Enoksson <enok@lysator.liu.se> + +SUBROUTINE BUG(A,B) + IMPLICIT NONE + + INTEGER :: A + INTEGER :: B(2) + + INTEGER, PARAMETER :: C(2) = (/ 1,2 /) + + WHERE (C(:).EQ.A) + B = -1 + END WHERE +END SUBROUTINE BUG + |