PR c++/86342 - -Wdeprecated-copy and system headers.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / data-already-4.c
blobe99ad33d9bea49b8ee8d010feaf16ffa4715d25b
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 acc_present_or_copyin (&i, sizeof i);
12 fprintf (stderr, "CheCKpOInT\n");
13 acc_copyin (&i, sizeof i);
15 return 0;
18 /* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */