Add missing private clause in libgomp.c++/member-2.C
authorTom de Vries <tom@codesourcery.com>
Fri, 23 Oct 2015 10:45:13 +0000 (10:45 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Fri, 23 Oct 2015 10:45:13 +0000 (10:45 +0000)
2015-10-23  Tom de Vries  <tom@codesourcery.com>

PR testsuite/68063
* testsuite/libgomp.c++/member-2.C (A::m1): Add missing private clause.

From-SVN: r229229

libgomp/ChangeLog
libgomp/testsuite/libgomp.c++/member-2.C

index 0cb1e6161ddcaebbf1a462ae45a1a56525a0ce42..658c47b0c13360b7fd839f14d7321fd0c4c6a2f4 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-23  Tom de Vries  <tom@codesourcery.com>
+
+       PR testsuite/68063
+       * testsuite/libgomp.c++/member-2.C (A::m1): Add missing private clause.
+
 2015-10-20  Nathan Sidwell  <nathan@codesourcery.com>
 
        * testsuite/libgomp.oacc-c-c++-common/reduction-5.c: Set sane
index bb348d8a82231a284cb4d840109728101baa74ef..bbe2bdf4d41a7cdb3e24b689810375e7f421662d 100644 (file)
@@ -154,7 +154,7 @@ A<Q>::m1 ()
     {
       f = false;
     #pragma omp single
-    #pragma omp taskloop lastprivate (a, T<Q>::t, b, n)
+    #pragma omp taskloop lastprivate (a, T<Q>::t, b, n) private (R::r)
       for (int i = 0; i < 30; i++)
        {
          int q = omp_get_thread_num ();