Add support for ARMv8-R architecture
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / data-already-5.c
blobe15c3fb1aaa1aa1940f7c77402a5b7fbd215aa91
1 /* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
3 #include <stdio.h>
4 #include <openacc.h>
6 int
7 main (int argc, char *argv[])
9 int i;
11 #pragma acc enter data create (i)
12 fprintf (stderr, "CheCKpOInT\n");
13 acc_copyin (&i, sizeof i);
15 return 0;
18 /* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
19 /* { dg-output "already mapped to" } */
20 /* { dg-shouldfail "" } */