Files
clang-p2996/flang/test/Lower/OpenMP/simple-barrier.f90
Shraiysh Vaishay e0f549a43a [flang] Added basic connect to lower OpenMP constructs
Reviewed By: clementval

Differential Revision: https://reviews.llvm.org/D121382
2022-03-10 22:48:25 +05:30

7 lines
131 B
Fortran

! RUN: bbc -fopenmp -emit-fir -o - %s | FileCheck %s
subroutine sample()
! CHECK: omp.barrier
!$omp barrier
end subroutine sample