aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorH.J. Lu <hjl@gcc.gnu.org>2010-07-19 06:35:19 -0700
committerH.J. Lu <hjl@gcc.gnu.org>2010-07-19 06:35:19 -0700
commitca90e7f6c12ddcf9f7ac890d07e168b0f2f21f1a (patch)
treed721bd2d21d6966f6d57d7dc5a139a1b70c6dea7 /gcc
parent746e63273fa818385bee5ac91e0965d785015969 (diff)
downloadgcc-ca90e7f6c12ddcf9f7ac890d07e168b0f2f21f1a.zip
gcc-ca90e7f6c12ddcf9f7ac890d07e168b0f2f21f1a.tar.gz
gcc-ca90e7f6c12ddcf9f7ac890d07e168b0f2f21f1a.tar.bz2
Remove gfortran.dg/data_implied_do_2.f90.
2010-07-19 H.J. Lu <hongjiu.lu@intel.com> PR fortran/44353 * gfortran.dg/data_implied_do_2.f90: Removed. From-SVN: r162305
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