[flang] [OpenMP] "!$omp dispatch"
Open
flang:openmp
- Dominant language
- LLVM
- Stars
- 40.5k
- Forks
- 18.7k
- PR merge metrics
- PR metrics pending
Description
The following code containing "!$omp dispatch" is not accepted in flang.
```fortran
subroutine test1(a, b, n)
integer :: n
real :: a(n), b(n)
!$omp dispatch
a = sin(b) ! OK
!$omp end dispatch
end subroutine
```
Contributor guide
Assessment
This issue has not been assessed yet.