From b3962a4a87050d851b4ddfab2c9519df7816d0cf Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 27 Oct 2015 11:32:32 +0100 Subject: [PATCH] [PR testsuite/68063] Add missing private clause in libgomp.c++/member-1.C PR testsuite/68063 * testsuite/libgomp.c++/member-1.C (A::m1): Add missing private clause. From-SVN: r229411 --- libgomp/ChangeLog | 5 +++++ libgomp/testsuite/libgomp.c++/member-1.C | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 (); -- 2.30.2