43 lines
570 B
C
43 lines
570 B
C
/* { dg-do run } */
|
|
|
|
#include <string.h>
|
|
#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_present_or_copyin (0, N);
|
|
if (!d)
|
|
abort ();
|
|
|
|
memset (&h[0], 0, N);
|
|
|
|
acc_copyout (h, N);
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
if (h[i] != i)
|
|
abort ();
|
|
}
|
|
|
|
free (h);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "\\\[\[^\n\r]*,\\\+256\\\] is a bad range" } */
|
|
/* { dg-shouldfail "" } */
|