collapse-2.c: Sequential loop is sequential.
authorNathan Sidwell <nathan@codesourcery.com>
Fri, 13 Nov 2015 16:53:28 +0000 (16:53 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Fri, 13 Nov 2015 16:53:28 +0000 (16:53 +0000)
* testsuite/libgomp.oacc-c-c++-common/collapse-2.c: Sequential
loop is sequential.

From-SVN: r230333

libgomp/ChangeLog
libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-2.c

index 9ca963ac314f0266a879250bb44a5a326df0bf01..eb1db836410f84f4c933f406c6a0cc8a22525e8f 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-13  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * testsuite/libgomp.oacc-c-c++-common/collapse-2.c: Sequential
+       loop is sequential.
+
 2015-11-13  Nathan Sidwell  <nathan@codesourcery.com>
 
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c: New.
index 8c56adac0cf8aead9abb9ab423877511f55d48ec..62bb5e0bbd9210127a1e8b766d13bf10e4165f8b 100644 (file)
@@ -9,7 +9,7 @@ main (void)
   int m1 = 4, m2 = -5, m3 = 17;
 
 #pragma acc parallel copy(l)
-  #pragma acc loop collapse(3) reduction(+:l)
+  #pragma acc loop seq collapse(3) reduction(+:l)
     for (i = -2; i < m1; i++)
       for (j = m2; j < -2; j++)
        {