Retro68/gcc/libgomp/testsuite/libgomp.oacc-c-c++-common/declare-5.c
2018-12-28 16:30:48 +01:00

16 lines
283 B
C

/* { dg-skip-if "" { *-*-* } { "-DACC_MEM_SHARED=1" } } */
#include <stdio.h>
int
main (int argc, char **argv)
{
int a[8] __attribute__((unused));
fprintf (stderr, "CheCKpOInT\n");
#pragma acc declare present (a)
}
/* { dg-output "CheCKpOInT" } */
/* { dg-shouldfail "" } */