Retro68/gcc/libgomp/testsuite/libgomp.oacc-c-c++-common/lib-52.c

29 lines
384 B
C
Raw Normal View History

2015-08-28 15:33:40 +00:00
/* { dg-do run } */
#include <stdlib.h>
#include <openacc.h>
int
main (int argc, char **argv)
{
const int N = 256;
unsigned char *h;
void *d;
h = (unsigned char *) malloc (N);
d = acc_malloc (N);
acc_map_data (0, d, N);
acc_unmap_data (h);
acc_free (d);
free (h);
return 0;
}
/* { dg-shouldfail "libgomp: \[(nil),+256\]->\[\h+,\+256\] is a bad map" } */