mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
18 lines
282 B
C
18 lines
282 B
C
|
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
|
||
|
|
||
|
#include <openacc.h>
|
||
|
|
||
|
int
|
||
|
main (int argc, char *argv[])
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
#pragma acc data present_or_copy (i)
|
||
|
acc_copyin (&i, sizeof i);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* { dg-shouldfail "" }
|
||
|
{ dg-output "already mapped to" } */
|