1 // RUN: %libomptarget-compilexx-run-and-check-aarch64-unknown-linux-gnu
2 // RUN: %libomptarget-compilexx-run-and-check-powerpc64-ibm-linux-gnu
3 // RUN: %libomptarget-compilexx-run-and-check-powerpc64le-ibm-linux-gnu
4 // RUN: %libomptarget-compilexx-run-and-check-x86_64-pc-linux-gnu
5 // RUN: %libomptarget-compilexx-run-and-check-nvptx64-nvidia-cuda
16 #pragma omp declare mapper(C1 s) map(to : s.a) map(from : s.b[0 : 2])
23 #pragma omp declare mapper(C s) map(to : s.a, s.c) map(from : s.b[0 : 2])
52 printf("%d %d %d %4.5f %d\n", sa
[1].e
, sa
[1].f
.a
, sa
[1].f
.c
.a
, sa
[1].f
.b
[1],
53 sa
[1].f
.b
== &x
[0] ? 1 : 0);
54 // CHECK: 111 222 777 20.00000 1
56 __intptr_t p
= reinterpret_cast<__intptr_t
>(&y
[0]);
57 #pragma omp target map(tofrom : sa) firstprivate(p)
59 printf("%d %d %d\n", sa
[1].f
.a
, sa
[1].f
.c
.a
,
60 sa
[1].f
.b
== reinterpret_cast<void *>(p
) ? 1 : 0);
67 printf("%d %d %d %4.5f %d\n", sa
[1].e
, sa
[1].f
.a
, sa
[1].f
.c
.a
, sa
[1].f
.b
[1],
68 sa
[1].f
.b
== &x
[0] ? 1 : 0);
69 // CHECK: 333 222 777 40.00000 1