From: Zack Weinberg Date: Sun, 1 Oct 2000 01:24:02 +0000 (+0000) Subject: New test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9256db1dea11f28654770cdfd450c95c3cc53a0f;p=gcc.git New test From-SVN: r36682 --- diff --git a/gcc/testsuite/g77.f-torture/compile/cpp.F b/gcc/testsuite/g77.f-torture/compile/cpp.F new file mode 100644 index 00000000000..bdf10d7fbde --- /dev/null +++ b/gcc/testsuite/g77.f-torture/compile/cpp.F @@ -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