mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
46 lines
573 B
C
46 lines
573 B
C
|
/* { dg-do run } */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <openacc.h>
|
||
|
|
||
|
int
|
||
|
main (int argc, char **argv)
|
||
|
{
|
||
|
const int N = 256;
|
||
|
int i;
|
||
|
unsigned char *h;
|
||
|
void *d;
|
||
|
|
||
|
h = (unsigned char *) malloc (N);
|
||
|
|
||
|
for (i = 0; i < N; i++)
|
||
|
{
|
||
|
h[i] = i;
|
||
|
}
|
||
|
|
||
|
d = acc_copyin (h, N);
|
||
|
if (!d)
|
||
|
abort ();
|
||
|
|
||
|
for (i = 0; i < N; i++)
|
||
|
{
|
||
|
h[i] = 0xab;
|
||
|
}
|
||
|
|
||
|
acc_update_device (h, 0);
|
||
|
|
||
|
acc_copyout (h, N);
|
||
|
|
||
|
for (i = 0; i < N; i++)
|
||
|
{
|
||
|
if (h[i] != 0xab)
|
||
|
abort ();
|
||
|
}
|
||
|
|
||
|
free (h);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* { dg-shouldfail "libgomp: \[\h+,0\] is not mapped" } */
|