mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
27 lines
361 B
C
27 lines
361 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_present_or_create (h, 0);
|
||
|
if (!d)
|
||
|
abort ();
|
||
|
|
||
|
acc_delete (h, N);
|
||
|
|
||
|
free (h);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* { dg-shouldfail "libgomp: \[\h+,\+0\] is a bad range" } */
|