aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.oacc-c-c++-common/lib-31.c
blob: 25ce5a95977f858a896e0a76300d87128ca52473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { 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, N);
  if (!d)
    abort ();

  if (acc_is_present (h, 1) != 1)
    abort ();

  acc_delete (h, N);

  free (h);

  return 0;
}