aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Koenig <tkoenig@gcc.gnu.org>2022-04-27 22:40:49 +0200
committerThomas Koenig <tkoenig@gcc.gnu.org>2022-04-27 22:42:04 +0200
commit58e4a744b6e8140499ed6c33a8e9a6557e102f74 (patch)
treefcd3c3ef80c17704fb05e1045571c62dcc5f22d0
parent409edcca331296b53842c50d3b789e1b1ccc05e5 (diff)
downloadgcc-58e4a744b6e8140499ed6c33a8e9a6557e102f74.zip
gcc-58e4a744b6e8140499ed6c33a8e9a6557e102f74.tar.gz
gcc-58e4a744b6e8140499ed6c33a8e9a6557e102f74.tar.bz2
Fix oversight from previous commit to pr70673.
gcc/testsuite/ChangeLog: * gfortran.dg/pr70673.f90: Removed second invalid line.
-rw-r--r--gcc/testsuite/gfortran.dg/pr70673.f901
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr70673.f90 b/gcc/testsuite/gfortran.dg/pr70673.f90
index 1449130..6eb9e7f 100644
--- a/gcc/testsuite/gfortran.dg/pr70673.f90
+++ b/gcc/testsuite/gfortran.dg/pr70673.f90
@@ -9,7 +9,6 @@ contains
subroutine s(inp)
character(*), intent(in) :: inp
character(:), allocatable :: a
- a = a ! This used to ICE.
a = inp
a = a ! This used to ICE too
if ((len (a) .ne. 5) .or. (a .ne. "hello")) STOP 1