1 ! RUN: %flang_fc1 -fopenmp -fopenmp-version=51 -fdebug-dump-symbols %s | FileCheck %s
3 ! 2.14.2 use_device_addr clause
4 ! List item that appears in a use_device_addr clause has corresponding storage
5 ! in the device data environment, references to the list item in the associated
6 ! structured block are converted into references to the corresponding list item.
8 subroutine omp_target_data
10 !CHECK: b, TARGET size=4096 offset=4096: ObjectEntity type: INTEGER(4) shape: 1_8:1024_8
11 integer, target
:: b(1024)
13 !$omp target data map(tofrom: a) use_device_addr(b)
14 !CHECK: b (OmpUseDeviceAddr): HostAssoc
17 end subroutine omp_target_data