Add support for ARMv8-R architecture
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-41.c
blob01c5f3cfaa351c5dcc8e07f2f982204345e9a2f2
1 /* { dg-do run } */
3 #include <stdlib.h>
4 #include <openacc.h>
6 int
7 main (int argc, char **argv)
9 const int N = 256;
10 int i;
11 unsigned char *h;
12 void *d;
14 h = (unsigned char *) malloc (N);
16 for (i = 0; i < N; i++)
18 h[i] = i;
21 d = acc_copyin (h, N);
22 if (!d)
23 abort ();
25 for (i = 0; i < N; i++)
27 h[i] = 0xab;
30 acc_update_device (h, N);
32 acc_copyout (h, N);
34 for (i = 0; i < N; i++)
36 if (h[i] != 0xab)
37 abort ();
40 free (h);
42 return 0;