From: Tobias Schlüter Date: Sat, 25 Sep 2004 12:50:02 +0000 (+0200) Subject: * gfortran.dg/pr15324.f90: Make array bounds consistent. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c855398563d3cf8f27a5c1f67860e6838cc3e96;p=gcc.git * gfortran.dg/pr15324.f90: Make array bounds consistent. From-SVN: r88096 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index aa50efc10c0..b2db1410711 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-09-25 Tobias Schlueter + + * gfortran.dg/pr15324.f90: Make array bounds consistent. + 2004-09-25 Jan Hubicka * compile/30040909-1.c: New test. diff --git a/gcc/testsuite/gfortran.dg/pr15324.f90 b/gcc/testsuite/gfortran.dg/pr15324.f90 index ce534633146..d918717e748 100644 --- a/gcc/testsuite/gfortran.dg/pr15324.f90 +++ b/gcc/testsuite/gfortran.dg/pr15324.f90 @@ -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)