44a0c6cbeb
* testsuite/libgomp.c/affinity-1.c: Fix implicit declarations. * testsuite/libgomp.c/nqueens-1.c: Likewise. * testsuite/libgomp.c/pr26943-3.c: Likewise. * testsuite/libgomp.c/pr26943-4.c: Likewise. * testsuite/libgomp.c/pr36802-2.c: Likewise. * testsuite/libgomp.c/pr36802-3.c: Likewise. * testsuite/libgomp.c/thread-limit-1.c: Likewise. * testsuite/libgomp.c/thread-limit-2.c: Likewise. * testsuite/libgomp.c/appendix-a/a.15.1.c: Include <omp.h>. * testsuite/libgomp.c/omp-loop02.c: Fix defaulting to int. * testsuite/libgomp.c/omp-parallel-for.c: Likewise. * testsuite/libgomp.c/omp-parallel-if.c: Likewise. * testsuite/libgomp.c/omp-single-1.c: Likewise. * testsuite/libgomp.c/omp-single-2.c: Likewise. * testsuite/libgomp.c/omp_matvec.c: Likewise. * testsuite/libgomp.c/omp_workshare3.c: Likewise. * testsuite/libgomp.c/omp_workshare4.c: Likewise. * testsuite/libgomp.c/shared-1.c: Fix defaulting to int. Fix implicit declarations. From-SVN: r215922
40 lines
427 B
C
40 lines
427 B
C
#include <omp.h>
|
|
|
|
extern void abort (void);
|
|
|
|
struct X
|
|
{
|
|
int a;
|
|
char b;
|
|
int c;
|
|
};
|
|
|
|
int
|
|
main()
|
|
{
|
|
int i = 0;
|
|
struct X x;
|
|
int bad = 0;
|
|
|
|
#pragma omp parallel private (i, x) shared (bad)
|
|
{
|
|
i = 5;
|
|
|
|
#pragma omp single copyprivate (i, x)
|
|
{
|
|
i++;
|
|
x.a = 23;
|
|
x.b = 42;
|
|
x.c = 26;
|
|
}
|
|
|
|
if (i != 6 || x.a != 23 || x.b != 42 || x.c != 26)
|
|
bad = 1;
|
|
}
|
|
|
|
if (bad)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|