bolt/deps/llvm-18.1.8/flang/test/Lower/OpenMP/FIR/taskwait.f90
2025-02-14 19:21:04 +01:00

12 lines
459 B
Fortran

!RUN: %flang_fc1 -emit-fir -fopenmp %s -o - | FileCheck %s --check-prefixes="FIRDialect,OMPDialect"
!RUN: %flang_fc1 -emit-fir -fopenmp %s -o - | fir-opt --fir-to-llvm-ir | FileCheck %s --check-prefixes="OMPDialect"
!FIRDialect-LABEL: @_QPomp_taskwait
subroutine omp_taskwait
!OMPDialect: omp.taskwait
!$omp taskwait
!FIRDialect: fir.call @_QPfoo() {{.*}}: () -> ()
call foo()
!OMPDialect: omp.taskwait
!$omp taskwait
end subroutine omp_taskwait