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
34 lines
353 B
C
34 lines
353 B
C
#include <omp.h>
|
|
|
|
/* Orphaned work sharing. */
|
|
|
|
extern void abort (void);
|
|
|
|
#define N 10
|
|
|
|
void parloop (int *a)
|
|
{
|
|
int i;
|
|
|
|
#pragma omp for
|
|
for (i = 0; i < N; i++)
|
|
a[i] = i + 3;
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
int i, a[N];
|
|
|
|
#pragma omp parallel shared(a)
|
|
{
|
|
parloop (a);
|
|
}
|
|
|
|
for (i = 0; i < N; i++)
|
|
if (a[i] != i + 3)
|
|
abort ();
|
|
|
|
return 0;
|
|
}
|