aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gfortran.dg/pr28971.f9020
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
+