ca431befaa
2015-06-15 Tom de Vries <tom@codesourcery.com> * testsuite/libgomp.c/atomic-18.c: Remove superfluous -fopenmp setting in dg-options. * testsuite/libgomp.c/atomic-3.c: Same. * testsuite/libgomp.c/debug-1.c: Same. * testsuite/libgomp.c/nqueens-1.c: Same. * testsuite/libgomp.c/pr26171.c: Same. * testsuite/libgomp.c/pr48591.c: Same. * testsuite/libgomp.c/pr64824.c: Same. * testsuite/libgomp.c/pr64868.c: Same. * testsuite/libgomp.c/pr66133.c: Same. * testsuite/libgomp.c/pr66199-1.c: Same. * testsuite/libgomp.c/pr66199-2.c: Same. * testsuite/libgomp.c/target-8.c: Same. From-SVN: r224480
26 lines
381 B
C
26 lines
381 B
C
/* { dg-do run } */
|
|
|
|
void
|
|
foo (int *p)
|
|
{
|
|
int i;
|
|
#pragma omp parallel
|
|
#pragma omp single
|
|
#pragma omp target teams distribute parallel for map(p[0:24])
|
|
for (i = 0; i < 24; i++)
|
|
p[i] = p[i] + 1;
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int p[24], i;
|
|
for (i = 0; i < 24; i++)
|
|
p[i] = i;
|
|
foo (p);
|
|
for (i = 0; i < 24; i++)
|
|
if (p[i] != i + 1)
|
|
__builtin_abort ();
|
|
return 0;
|
|
}
|