blob: 32f47fb34a917512e898f7050d702effe581a1f3 [file] [log] [blame]
/* { dg-additional-options "-fopenacc-kernels=parloops" } as this is
specifically testing "parloops" handling. */
#include <stdlib.h>
#define N 32
unsigned int
foo (int n, unsigned int *a)
{
int r;
#pragma acc kernels copyout(r) copy (a[0:N])
{
r = a[0];
for (int i = 0; i < n; i++)
a[i] = 1;
}
return r;
}
int
main (void)
{
unsigned int a[N];
unsigned res, i;
for (i = 0; i < N; ++i)
a[i] = i % 4;
res = foo (N, a);
if (res != 0)
abort ();
return 0;
}