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

20 lines
290 B
C

/*
* @@name: array_sections.1c
* @@type: C
* @@compilable: no
* @@linkable: no
* @@expect: failure
*/
void foo ()
{
int A[30];
#pragma omp target data map( A[0:4] )
{
/* Cannot map distinct parts of the same array */
#pragma omp target map( A[7:20] )
{
A[2] = 0;
}
}
}