diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index ca34af8203c..019450399fc 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2015-10-27 Thomas Schwinge + + PR testsuite/68063 + * testsuite/libgomp.c++/member-1.C (A::m1): Add missing private clause. + 2015-10-27 James Norris * testsuite/libgomp.oacc-c-c++-common/combdir-1.c: New file. diff --git a/libgomp/testsuite/libgomp.c++/member-1.C b/libgomp/testsuite/libgomp.c++/member-1.C index d2d0c5b2667..c7c1ba4de8a 100644 --- a/libgomp/testsuite/libgomp.c++/member-1.C +++ b/libgomp/testsuite/libgomp.c++/member-1.C @@ -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 ();