1 ! RUN: %flang_fc1 -fopenmp -emit-llvm -debug-info-kind=standalone %s -o - | FileCheck %s
3 ! Test that variables inside OpenMP target region don't cause build failure.
6 real, allocatable
:: xyz(:)
9 !$omp target simd map(from:xyz)
15 subroutine test2 (xyz
)
19 !$omp target map(from:xyz)
27 !CHECK: DISubprogram(name: "test1"{{.*}})
28 !CHECK: DISubprogram(name: "test2"{{.*}})