aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Thomas <pault@gcc.gnu.org>2005-09-09 00:27:21 +0000
committerPaul Thomas <pault@gcc.gnu.org>2005-09-09 00:27:21 +0000
commit41306174c8b7e4680a11d6faf4a03261bbcb243b (patch)
tree39009ab1864cda3d62fa05f9a2552ff5cf019197
parent30aabb86ef4252ad2df0d3a56c364b824a2e5245 (diff)
downloadgcc-41306174c8b7e4680a11d6faf4a03261bbcb243b.zip
gcc-41306174c8b7e4680a11d6faf4a03261bbcb243b.tar.gz
gcc-41306174c8b7e4680a11d6faf4a03261bbcb243b.tar.bz2
19990905-0.f: Remove XFAIL...
2005-09-09 Paul Thomas <pault@gcc.gnu.org> * gfortran.dg/g77/19990905-0.f: Remove XFAIL, rearrange equivalences and add comment to connect the test with the PR. - forgotten in previous. From-SVN: r104061
-rw-r--r--gcc/testsuite/gfortran.dg/g77/19990905-0.f8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/g77/19990905-0.f b/gcc/testsuite/gfortran.dg/g77/19990905-0.f
index 005f91d..8e81d43 100644
--- a/gcc/testsuite/gfortran.dg/g77/19990905-0.f
+++ b/gcc/testsuite/gfortran.dg/g77/19990905-0.f
@@ -1,8 +1,12 @@
c { dg-do compile }
* =foo0.f in Burley's g77 test suite.
+! Used to give "Variable 'm' cannot appear" "Variable 'm' cannot appear"
+! after REAL a(m,n), as described in PR 16511.
+!
subroutine sub(a)
+ equivalence (m,iarray(100))
common /info/ iarray(1000)
- equivalence (m,iarray(100)), (n,iarray(200))
- real a(m,n) ! { dg-bogus "Variable 'm' cannot appear" "Variable 'm' cannot appear" { xfail *-*-* } } PR 16511
+ equivalence (n,iarray(200))
+ real a(m,n)
a(1,1) = a(2,2)
end