Check CXXFLAGS, instead of CFLAGS, for NO_PIE_CFLAGS
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-17.c
blobd20ad6ab641880240edc40da8b4d51b1cca71b92
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;
13 h = (unsigned char *) malloc (N);
15 for (i = 0; i < N; i++)
17 h[i] = i;
20 (void) acc_copyin (h, N);
22 acc_copyout (h, N);
24 acc_copyout (h, N);
26 free (h);
28 return 0;
31 /* { dg-output "\\\[\[0-9a-fA-FxX\]+,256\\\] is not mapped" } */
32 /* { dg-shouldfail "" } */