aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog12
-rw-r--r--gcc/testsuite/gfortran.dg/data_implied_do_2.f9010
2 files changed, 6 insertions, 16 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c898a9e..3720357 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-19 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR fortran/44353
+ * gfortran.dg/data_implied_do_2.f90: Removed.
+
2010-07-19 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/44969
@@ -53,15 +58,10 @@
* gcc.target/i386/vperm-v4sf-1.c: Use dg-require-effective-target
sse_runtime.
-2010-07-19 Paul Thomas <pault@gcc.gnu.org>
-
- PR fortran/44353
- * gfortran.dg/data_implied_do_2.f03 : Removed.
-
2010-07-18 Paul Thomas <pault@gcc.gnu.org>
PR fortran/44353
- * gfortran.dg/data_implied_do_2.f03 : New test.
+ * gfortran.dg/data_implied_do_2.f90: New test.
2010-07-18 Richard Sandiford <rdsandiford@googlemail.com>
diff --git a/gcc/testsuite/gfortran.dg/data_implied_do_2.f90 b/gcc/testsuite/gfortran.dg/data_implied_do_2.f90
deleted file mode 100644
index e07690d..0000000
--- a/gcc/testsuite/gfortran.dg/data_implied_do_2.f90
+++ /dev/null
@@ -1,10 +0,0 @@
-! { dg-do compile }
-! Tests the fix for PR44353
-!
-! Contributed by Vittorio Zecca <zeccav@gmail.com>
-!
- subroutine sub(i)
- intent(in) i
- integer ii(10)
- data (ii(i),i=1,10) /10*0/ ! failed here
- end