mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
22 lines
284 B
C
22 lines
284 B
C
/*
|
|
* @@name: array_sections.4c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
void foo ()
|
|
{
|
|
int A[30];
|
|
#pragma omp target data map( A[0:10] )
|
|
{
|
|
p = &A[0];
|
|
#pragma omp target map( p[3:7] )
|
|
{
|
|
A[2] = 0;
|
|
p[8] = 0;
|
|
A[8] = 1;
|
|
}
|
|
}
|
|
}
|