mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
20 lines
290 B
C
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;
|
|
}
|
|
}
|
|
}
|