[PR testsuite/68063] Add missing private clause in libgomp.c++/member-1.C
authorThomas Schwinge <thomas@codesourcery.com>
Tue, 27 Oct 2015 10:32:32 +0000 (11:32 +0100)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Tue, 27 Oct 2015 10:32:32 +0000 (11:32 +0100)
PR testsuite/68063
* testsuite/libgomp.c++/member-1.C (A::m1): Add missing private clause.

From-SVN: r229411

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

index ca34af8203c4b5170913bb1f5a70a58d90d8ffcf..019450399fc889aa9c83c0db7bb4ccfc4bb75b35 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-27  Thomas Schwinge  <thomas@codesourcery.com>
+
+       PR testsuite/68063
+       * testsuite/libgomp.c++/member-1.C (A::m1): Add missing private clause.
+
 2015-10-27  James Norris  <jnorris@codesourcery.com>
 
        * testsuite/libgomp.oacc-c-c++-common/combdir-1.c: New file.
index d2d0c5b26674ffa34d3c160ad09f4bc6e1d3c206..c7c1ba4de8ad61884fde73cff4aa6a7b8adbe62d 100644 (file)
@@ -151,7 +151,7 @@ A::m1 ()
     {
       f = false;
     #pragma omp single
-    #pragma omp taskloop lastprivate (a, t, b, n)
+    #pragma omp taskloop lastprivate (a, t, b, n) private (R::r)
       for (int i = 0; i < 30; i++)
        {
          int q = omp_get_thread_num ();