aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry DeLisle <jvdelisle@gcc.gnu.org>2007-04-21 22:00:38 +0000
committerJerry DeLisle <jvdelisle@gcc.gnu.org>2007-04-21 22:00:38 +0000
commitc839d34b9307036fb8b13781112a1cb27888007e (patch)
treebf89e4756bde29b6926f3c690e2544db56653f18
parent7be97ac71e94833c6c38bd6e1a151d06ba3a682e (diff)
downloadgcc-c839d34b9307036fb8b13781112a1cb27888007e.zip
gcc-c839d34b9307036fb8b13781112a1cb27888007e.tar.gz
gcc-c839d34b9307036fb8b13781112a1cb27888007e.tar.bz2
re PR fortran/31495 (Is this continuation line legal?)
2007-04-21 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR fortran/31495 * gfortran.dg/continuation_8.f90: New test. From-SVN: r124026
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/continuation_8.f909
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e5772ff..44a2bbb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-21 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ PR fortran/31495
+ * gfortran.dg/continuation_8.f90: New test.
+
2007-04-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR C/30265
diff --git a/gcc/testsuite/gfortran.dg/continuation_8.f90 b/gcc/testsuite/gfortran.dg/continuation_8.f90
new file mode 100644
index 0000000..251af99
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/continuation_8.f90
@@ -0,0 +1,9 @@
+! { dg-do run }
+! PR31495 Is this continuation legal?
+program print_ascertain
+character (len=50) :: str
+str = "hello world &
+& &
+&!"
+if (str.ne."hello world !") call abort
+end program print_ascertain