Check CXXFLAGS, instead of CFLAGS, for NO_PIE_CFLAGS
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-43.c
blob45d4988b3261e883dc974a795f2b1cc97d67b4d2
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-output "\\\[\[^\n\r]*,256\\\] is not mapped" } */
46 /* { dg-shouldfail "" } */