blob: 3f1e9729e4178868f00dfc9be536458716b2c87f [file] [log] [blame]
/* { dg-do compile } */
void
foo (void)
{
/* Test to ensure that the close modifier is parsed and ignored in map clauses. */
#define N 1024
int always[N];
int close;
#pragma omp target map(always[:N])
;
#pragma omp target map(close, always[:N])
;
#pragma omp target map(always[:N], close)
;
}