mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
16 lines
285 B
C
16 lines
285 B
C
/* { dg-do run { target openacc_nvidia_accel_selected } } */
|
|
|
|
#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 "" } */
|