Retro68/gcc/libgomp/testsuite/libgomp.fortran/examples-4/array_sections-4.f90

19 lines
383 B
Fortran
Raw Normal View History

2015-08-28 15:33:40 +00:00
! { dg-do run }
call foo ()
contains
subroutine foo ()
integer, target :: A(30)
integer, pointer :: p(:)
!$omp target data map(A(1:10))
p => A
!$omp target map(p(4:10)) map(A(1:10))
A(3) = 777
p(9) = 777
A(9) = 999
!$omp end target
!$omp end target data
2018-12-28 15:30:48 +00:00
if (A(3) /= 777 .or. A(9) /= 999) STOP 1
2015-08-28 15:33:40 +00:00
end subroutine
end