mirror of git://gcc.gnu.org/git/gcc.git
19 lines
328 B
C
19 lines
328 B
C
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
|
|
|
|
#include <stdio.h>
|
|
#include <openacc.h>
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
int i;
|
|
|
|
acc_present_or_copyin (&i, sizeof i);
|
|
fprintf (stderr, "CheCKpOInT\n");
|
|
#pragma acc enter data create (i)
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
|