Commit 88ebcde5 by Tom de Vries Committed by Tom de Vries

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
parent ed37f25a
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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment