view libgomp/testsuite/libgomp.oacc-c-c++-common/lib-10.c @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do run } */

#include <stdlib.h>
#include <openacc.h>

int
main (int argc, char **argv)
{
  void *d;
  acc_device_t devtype = acc_device_default;

  acc_init (devtype);

  d = acc_malloc (0);
  if (d != NULL)
    abort ();

  acc_free (0);

  acc_shutdown (devtype);

  acc_set_device_type (devtype);

  d = acc_malloc (0);
  if (d != NULL)
    abort ();

  acc_shutdown (devtype);

  acc_init (devtype);

  d = acc_malloc (1024);
  if (d == NULL)
    abort ();

  acc_free (d);

  acc_shutdown (devtype);

  acc_set_device_type (devtype);

  d = acc_malloc (1024);
  if (d == NULL)
    abort ();

  acc_free (d);

  acc_shutdown (devtype);

  return 0;
}