diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2015-10-27 11:32:32 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2015-10-27 11:32:32 +0100 |
commit | b3962a4a87050d851b4ddfab2c9519df7816d0cf (patch) | |
tree | 7f39f4a24329cdae6778a11d5ac3c52a858d831f | |
parent | 8acda9b2c0ef626ebb8f73598ddc39f427d7f66b (diff) | |
download | gcc-b3962a4a87050d851b4ddfab2c9519df7816d0cf.zip gcc-b3962a4a87050d851b4ddfab2c9519df7816d0cf.tar.gz gcc-b3962a4a87050d851b4ddfab2c9519df7816d0cf.tar.bz2 |
[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
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/testsuite/libgomp.c++/member-1.C | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index ca34af8..0194503 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -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. diff --git a/libgomp/testsuite/libgomp.c++/member-1.C b/libgomp/testsuite/libgomp.c++/member-1.C index d2d0c5b..c7c1ba4 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 (); |