OpenMP-Examples/sources/Example_array_sections.2c.c
2015-01-13 11:38:24 -08:00

24 lines
425 B
C

/*
* @@name: array_sections.2c
* @@type: C
* @@compilable: no
* @@linkable: no
* @@expect: failure
*/
void foo ()
{
int A[30], *p;
#pragma omp target data map( A[0:4] )
{
p = &A[0];
/* invalid because p[3] and A[3] are the same
* location on the host but the array section
* specified via p[...] is not a subset of A[0:4] */
#pragma omp target map( p[3:20] )
{
A[2] = 0;
p[8] = 0;
}
}
}