mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
27 lines
364 B
C
27 lines
364 B
C
/* { 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_create (h, N);
|
|
if (!d)
|
|
abort ();
|
|
|
|
acc_delete (h, N - 2);
|
|
|
|
free (h);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-shouldfail "libgomp: \[\h+,256\] surrounds2 \[\h+,\+254\]" } */
|