aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/requires-1-aux.f90
blob: a18caeb4c694545a31783b3707cc4a59e6173719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { dg-skip-if "" { *-*-* } }

module m
  integer x
end module m

subroutine foo
  use m
  implicit none
  !$omp requires unified_address

  x = 1
  !$omp target enter data map(always,to: x)
end