Merge current set of OpenACC changes from gomp-4_0-branch.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-43.c
blobceeb155fe448316e902d174d9844f88c36d1d1cb
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 (0, 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;
45 /* { dg-shouldfail "libgomp: \[\(nil\),256\] is not mapped" } */