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