Issue |
100919
|
Summary |
[Flang][OpenMP] LLVM ERROR: symbol not mapped (do concurrent)
|
Labels |
flang
|
Assignees |
|
Reporter |
k-arrows
|
I know https://github.com/llvm/llvm-project/issues/85538 has been already fixed, but I have other reproducers that crash due to the combination of do concurrent and OpenMP.
Reproducer(1)
https://godbolt.org/z/a6zMGaTEh
```f90
integer :: i
!$omp task
do concurrent (i=1:2)
end do
!$omp end task
end
```
Reproducer(2)
https://godbolt.org/z/n5Ge38q4v
```f90
integer :: i
!$omp parallel
do concurrent (i=1:2)
end do
!$omp end parallel
end
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs