New test
authorZack Weinberg <zack@gcc.gnu.org>
Sun, 1 Oct 2000 01:24:02 +0000 (01:24 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Sun, 1 Oct 2000 01:24:02 +0000 (01:24 +0000)
From-SVN: r36682

gcc/testsuite/g77.f-torture/compile/cpp.F [new file with mode: 0644]

diff --git a/gcc/testsuite/g77.f-torture/compile/cpp.F b/gcc/testsuite/g77.f-torture/compile/cpp.F
new file mode 100644 (file)
index 0000000..bdf10d7
--- /dev/null
@@ -0,0 +1,9 @@
+C When run through the C preprocessor, the indentation of the
+C CONTINUE line must not be mangled.
+      subroutine aap(a, n)
+      dimension a(n)
+      do 10 i = 1, n
+         a(i) = i
+ 10   continue
+      print *, a(1)
+      end