mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
30 lines
408 B
C
30 lines
408 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;
|
|
|
|
h = (unsigned char *) malloc (N);
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
h[i] = i;
|
|
}
|
|
|
|
(void) acc_copyin (h, N);
|
|
|
|
(void) acc_copyin (h, N);
|
|
|
|
free (h);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-shouldfail "libgomp: \[\h+,\+256\] already mapped to \[\h+,\+256\]" } */
|