brintos

brintos / llvm-project-archived public Read only

0
0
Text · 332 B · a31d2ac Raw
14 lines · plain
1!REQUIRES: amdgpu-registered-target2 3!RUN: %flang_fc1 -emit-hlfir -fopenmp -triple amdgcn -fopenmp -fopenmp-is-target-device -o - %s | FileCheck %s4 5!CHECK: hlfir.declare %{{.*}} {uniq_name = "_QFEx"} : (!fir.ref<f80>) -> (!fir.ref<f80>, !fir.ref<f80>)6 7program p8  real(10) :: x9  !$omp target10    continue11  !$omp end target12end13 14