blob: 0118b2568e2340656913fce72a70f4213e552d96 [file] [log] [blame]
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
#include <stdio.h>
int
main (int argc, char *argv[])
{
int i;
#pragma acc data present_or_copy (i)
{
fprintf (stderr, "CheCKpOInT\n");
#pragma acc data copyout (i)
++i;
}
return 0;
}
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */