1!RUN: %flang_fc1 -emit-fir -fopenmp %s -o - | FileCheck %s --check-prefixes="FIRDialect,OMPDialect"
2!RUN: %flang_fc1 -emit-fir -fopenmp %s -o - | fir-opt --fir-to-llvm-ir | FileCheck %s --check-prefixes="OMPDialect"
3
4!FIRDialect-LABEL: @_QPomp_taskyield
5subroutine omp_taskyield
6  !OMPDialect: omp.taskyield
7  !$omp taskyield
8  !FIRDialect: fir.call @_QPfoo() : () -> ()
9  call foo()
10  !OMPDialect: omp.taskyield
11  !$omp taskyield
12end subroutine omp_taskyield
13