Commit b3962a4a by Thomas Schwinge Committed by Thomas Schwinge

[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
parent 8acda9b2
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> 2015-10-27 James Norris <jnorris@codesourcery.com>
* testsuite/libgomp.oacc-c-c++-common/combdir-1.c: New file. * testsuite/libgomp.oacc-c-c++-common/combdir-1.c: New file.
......
...@@ -151,7 +151,7 @@ A::m1 () ...@@ -151,7 +151,7 @@ A::m1 ()
{ {
f = false; f = false;
#pragma omp single #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++) for (int i = 0; i < 30; i++)
{ {
int q = omp_get_thread_num (); 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