! This test checks lowering of OpenMP Threadprivate Directive. ! Test for character, array, and character array. !RUN: %flang_fc1 -emit-hlfir -fopenmp %s -o - | FileCheck %s module test character :: x integer :: y(5) character(5) :: z(5) !$omp threadprivate(x, y, z) !CHECK-DAG: fir.global @_QMtestEx : !fir.char<1> { !CHECK-DAG: fir.global @_QMtestEy : !fir.array<5xi32> { !CHECK-DAG: fir.global @_QMtestEz : !fir.array<5x!fir.char<1,5>> { contains subroutine sub() !CHECK-DAG: %[[X:.*]] = fir.address_of(@_QMtestEx) : !fir.ref> !CHECK-DAG: %[[X_DECL:.*]]:2 = hlfir.declare %[[X]] typeparams %c1 {uniq_name = "_QMtestEx"} : (!fir.ref>, index) -> (!fir.ref>, !fir.ref>) !CHECK-DAG: %[[OMP_X:.*]] = omp.threadprivate %[[X_DECL]]#1 : !fir.ref> -> !fir.ref> !CHECK-DAG: %[[OMP_X_DECL:.*]]:2 = hlfir.declare %[[OMP_X]] typeparams %c1 {uniq_name = "_QMtestEx"} : (!fir.ref>, index) -> (!fir.ref>, !fir.ref>) !CHECK-DAG: %[[Y:.*]] = fir.address_of(@_QMtestEy) : !fir.ref> !CHECK-DAG: %[[Y_DECL:.*]]:2 = hlfir.declare %[[Y]](%{{.*}}) {uniq_name = "_QMtestEy"} : (!fir.ref>, !fir.shape<1>) -> (!fir.ref>, !fir.ref>) !CHECK-DAG: %[[OMP_Y:.*]] = omp.threadprivate %[[Y_DECL]]#1 : !fir.ref> -> !fir.ref> !CHECK-DAG: %[[OMP_Y_DECL:.*]]:2 = hlfir.declare %[[OMP_Y]](%{{.*}}) {uniq_name = "_QMtestEy"} : (!fir.ref>, !fir.shape<1>) -> (!fir.ref>, !fir.ref>) !CHECK-DAG: %[[Z:.*]] = fir.address_of(@_QMtestEz) : !fir.ref>> !CHECK-DAG: %[[Z_DECL:.*]]:2 = hlfir.declare %[[Z]](%{{.*}}) typeparams %c5_0 {uniq_name = "_QMtestEz"} : (!fir.ref>>, !fir.shape<1>, index) -> (!fir.ref>>, !fir.ref>>) !CHECK-DAG: %[[OMP_Z:.*]] = omp.threadprivate %[[Z_DECL]]#1 : !fir.ref>> -> !fir.ref>> !CHECK-DAG: %[[OMP_Z_DECL:.*]]:2 = hlfir.declare %[[OMP_Z]](%{{.*}}) typeparams %c5_0 {uniq_name = "_QMtestEz"} : (!fir.ref>>, !fir.shape<1>, index) -> (!fir.ref>>, !fir.ref>>) !CHECK-DAG: %{{.*}} = fir.convert %[[OMP_X_DECL]]#1 : (!fir.ref>) -> !fir.ref !CHECK-DAG: %{{.*}} = fir.embox %[[OMP_Y_DECL]]#1(%{{.*}}) : (!fir.ref>, !fir.shape<1>) -> !fir.box> !CHECK-DAG: %{{.*}} = fir.embox %[[OMP_Z_DECL]]#1(%{{.*}}) : (!fir.ref>>, !fir.shape<1>) -> !fir.box>> print *, x, y, z !$omp parallel !CHECK-DAG: %[[X_PVT:.*]] = omp.threadprivate %[[X_DECL]]#1 : !fir.ref> -> !fir.ref> !CHECK-DAG: %[[X_PVT_DECL:.*]]:2 = hlfir.declare %[[X_PVT]] typeparams %c1 {uniq_name = "_QMtestEx"} : (!fir.ref>, index) -> (!fir.ref>, !fir.ref>) !CHECK-DAG: %[[Y_PVT:.*]] = omp.threadprivate %[[Y_DECL]]#1 : !fir.ref> -> !fir.ref> !CHECK-DAG: %[[Y_PVT_DECL:.*]]:2 = hlfir.declare %[[Y_PVT]](%{{.*}}) {uniq_name = "_QMtestEy"} : (!fir.ref>, !fir.shape<1>) -> (!fir.ref>, !fir.ref>) !CHECK-DAG: %[[Z_PVT:.*]] = omp.threadprivate %[[Z_DECL]]#1 : !fir.ref>> -> !fir.ref>> !CHECK-DAG: %[[Z_PVT_DECL:.*]]:2 = hlfir.declare %[[Z_PVT]](%{{.*}}) typeparams %c5_0 {uniq_name = "_QMtestEz"} : (!fir.ref>>, !fir.shape<1>, index) -> (!fir.ref>>, !fir.ref>>) !CHECK-DAG: %{{.*}} = fir.convert %[[X_PVT_DECL]]#1 : (!fir.ref>) -> !fir.ref !CHECK-DAG: %{{.*}} = fir.embox %[[Y_PVT_DECL]]#1(%{{.*}}) : (!fir.ref>, !fir.shape<1>) -> !fir.box> !CHECK-DAG: %{{.*}} = fir.embox %[[Z_PVT_DECL]]#1(%{{.*}}) : (!fir.ref>>, !fir.shape<1>) -> !fir.box>> print *, x, y, z !$omp end parallel !CHECK-DAG: %{{.*}} = fir.convert %[[OMP_X_DECL]]#1 : (!fir.ref>) -> !fir.ref !CHECK-DAG: %{{.*}} = fir.embox %[[OMP_Y_DECL]]#1(%{{.*}}) : (!fir.ref>, !fir.shape<1>) -> !fir.box> !CHECK-DAG: %{{.*}} = fir.embox %[[OMP_Z_DECL]]#1(%{{.*}}) : (!fir.ref>>, !fir.shape<1>) -> !fir.box>> print *, x, y, z end end