Add missing private clause in libgomp.c++/member-2.C
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
This commit is contained in:
parent
ed37f25a36
commit
88ebcde507
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Reference in a new issue