* gfortran.dg/pr15324.f90: Make array bounds consistent.
authortobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 25 Sep 2004 12:50:02 +0000 (12:50 +0000)
committertobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 25 Sep 2004 12:50:02 +0000 (12:50 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88096 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/pr15324.f90

index aa50efc..b2db141 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-25  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       * gfortran.dg/pr15324.f90: Make array bounds consistent.
+
 2004-09-25  Jan Hubicka  <jh@suse.cz>
 
        * compile/30040909-1.c: New test.
index ce53463..d918717 100644 (file)
@@ -4,7 +4,7 @@
 program strarray_6
 character(5), dimension(:), allocatable :: c
 n = 3
-allocate(c(-1:n-1))
+allocate(c(-1:n-2))
 c = "BLUBB"
 call foo(c)
 call bar(c,n)