view libgomp/testsuite/libgomp.oacc-c-c++-common/lib-25.c @ 133:420680fc7707

do normal call in goto codesegment in normal function
author anatofuz
date Sat, 03 Nov 2018 19:49:09 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* Exercise acc_create and acc_delete.  */

#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 ();

  d = acc_create (h, N);
  if (!d)
    abort ();

  acc_delete (h, N);

  if (!acc_is_present (h, N))
    abort ();

  acc_delete (h, N);

#if !ACC_MEM_SHARED
  if (acc_is_present (h, N))
    abort ();
#endif

  free (h);

  return 0;
}