view libgomp/testsuite/libgomp.oacc-c-c++-common/data-already-8.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

/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */

#include <stdio.h>

int
main (int argc, char *argv[])
{
  int i;

#pragma acc data create (i)
  {
    fprintf (stderr, "CheCKpOInT\n");
#pragma acc parallel copyin (i)
    ++i;
  }

  return 0;
}

/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */