aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2015-11-04 17:00:27 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2015-11-04 17:00:27 +0000
commit4d49f9642af94874e1d62da0a5c877dfb894e914 (patch)
tree09cd54acda8bc288a831bae821f4b376379c38f0
parentf3552158261c9ddfa03b4f944a307eda4761cb44 (diff)
downloadgcc-4d49f9642af94874e1d62da0a5c877dfb894e914.zip
gcc-4d49f9642af94874e1d62da0a5c877dfb894e914.tar.gz
gcc-4d49f9642af94874e1d62da0a5c877dfb894e914.tar.bz2
* gfortran.dg/goacc/reduction-2.f95: Delete.
From-SVN: r229769
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gfortran.dg/goacc/reduction-2.f9521
2 files changed, 4 insertions, 21 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index d99f0fc..40a5dd2 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2015-11-04 Nathan Sidwell <nathan@codesourcery.com>
+
+ * gfortran.dg/goacc/reduction-2.f95: Delete.
+
2015-11-04 Tom de Vries <tom@codesourcery.com>
PR tree-optimization/67742
diff --git a/gcc/testsuite/gfortran.dg/goacc/reduction-2.f95 b/gcc/testsuite/gfortran.dg/goacc/reduction-2.f95
deleted file mode 100644
index ffcec70..0000000
--- a/gcc/testsuite/gfortran.dg/goacc/reduction-2.f95
+++ /dev/null
@@ -1,21 +0,0 @@
-! { dg-do compile }
-
-program reduction
- integer, parameter :: n = 40, c = 10
- integer :: i, sum
-
- call redsub (sum, n, c)
-end program reduction
-
-subroutine redsub(sum, n, c)
- integer :: sum, n, c
-
- sum = 0
-
- !$acc parallel vector_length(n) copyin (n, c)
- !$acc loop reduction(+:sum)
- do i = 1, n
- sum = sum + c
- end do
- !$acc end parallel
-end subroutine redsub