mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-23 01:30:29 +08:00
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
@ -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…
x
Reference in New Issue
Block a user