diff options
| author | tobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-25 12:50:02 +0000 |
|---|---|---|
| committer | tobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-25 12:50:02 +0000 |
| commit | 06780ca85d136fa33ff15b7c59bf0365ca1869e3 (patch) | |
| tree | bb3bdb7434fccfe2c0211974e066bfbeae3cf046 | |
| parent | 6d5d842898e6e99d6e585821a689bc2fd4e720af (diff) | |
| download | ppe42-gcc-06780ca85d136fa33ff15b7c59bf0365ca1869e3.tar.gz ppe42-gcc-06780ca85d136fa33ff15b7c59bf0365ca1869e3.zip | |
* gfortran.dg/pr15324.f90: Make array bounds consistent.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88096 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/testsuite/gfortran.dg/pr15324.f90 | 2 |
2 files changed, 5 insertions, 1 deletions
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 <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. 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) |

