]> gcc.gnu.org Git - gcc.git/blob - libgomp/testsuite/libgomp.oacc-c-c++-common/lib-22.c
Merge current set of OpenACC changes from gomp-4_0-branch.
[gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-22.c
1 /* { dg-do run } */
2
3 #include <stdlib.h>
4 #include <openacc.h>
5
6 int
7 main (int argc, char **argv)
8 {
9 const int N = 256;
10 int i;
11 unsigned char *h;
12
13 h = (unsigned char *) malloc (N);
14
15 for (i = 0; i < N; i++)
16 {
17 h[i] = i;
18 }
19
20 (void) acc_copyin (h, N);
21
22 acc_copyout (h + 1, N - 1);
23
24 free (h);
25
26 return 0;
27 }
28
29 /* { dg-shouldfail "libgomp: \[\h+,256\] surrounds2 \[\h+,\+255\]" } */
This page took 0.035383 seconds and 5 git commands to generate.