aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.oacc-c-c++-common/data-already-6.c
blob: 77b56a93281eb5f0486b7ab9258303198d53a673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */

#include <openacc.h>

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

  acc_present_or_copyin (&i, sizeof i);
#pragma acc enter data create (i)

  return 0;
}

/* { dg-shouldfail "" }
   { dg-output "already mapped to" } */