From 4dc0796f75c62945c1a8ffbec1ab86875b35a45c Mon Sep 17 00:00:00 2001 From: Jerry DeLisle Date: Tue, 30 Aug 2005 05:05:38 +0000 Subject: [PATCH] intrinsic_count.f90: Fix array dimension to avoid correct end-of-file error. 2005-08-29 Jerry DeLisle * gfortran.fortran-torture/execute/intrinsic_count.f90: Fix array dimension to avoid correct end-of-file error. From-SVN: r103626 --- gcc/testsuite/ChangeLog | 7 ++++++- .../gfortran.fortran-torture/execute/intrinsic_count.f90 | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index fa4675b209d..247687299d0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,4 +1,9 @@ -2005-02-29 Thomas Koenig +2005-08-29 Jerry DeLisle + + * gfortran.fortran-torture/execute/intrinsic_count.f90: + Fix array dimension to avoid correct end-of-file error. + +2005-08-29 Thomas Koenig PR libfortran/23598 * gfortran.dg/iostat_1.f90: New test. diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_count.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_count.f90 index f95c198c1f5..0892d629c04 100644 --- a/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_count.f90 +++ b/gcc/testsuite/gfortran.fortran-torture/execute/intrinsic_count.f90 @@ -2,7 +2,7 @@ program intrinsic_count implicit none logical(kind=4), dimension (3, 5) :: a - integer(kind=4), dimension (5) :: b + integer(kind=4), dimension (3) :: b integer i character(len=10) line