* gfortran.dg/goacc/reduction-2.f95: Delete.
authorNathan Sidwell <nathan@codesourcery.com>
Wed, 4 Nov 2015 17:00:27 +0000 (17:00 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Wed, 4 Nov 2015 17:00:27 +0000 (17:00 +0000)
From-SVN: r229769

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/goacc/reduction-2.f95 [deleted file]

index d99f0fc28441838532bc2b03de9864c307e01fd5..40a5dd2ef8aeb4023f96b98bd200fb4b846232e7 100644 (file)
@@ -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 (file)
index ffcec70..0000000
+++ /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