Files
clang-p2996/flang/test/Lower/OpenMP/taskwait.f90
Shraiysh Vaishay e6295c645f [flang] Added tests for taskwait and taskyield translation
Reviewed By: kiranchandramohan

Differential Revision: https://reviews.llvm.org/D124229

Co-authored-by: Sourabh Singh Tomar <SourabhSingh.Tomar@amd.com>
2022-05-02 10:48:03 +05:30

13 lines
453 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