Issue 151990
Summary [Flang] [OpenMP] crashes on an array in the depend clause of task directive
Labels crash, flang:openmp
Assignees
Reporter k-arrows
    Reproducer:
https://godbolt.org/z/8nn9z7Ez8
```f90
subroutine foo(x)
integer :: x(3, *)
!$omp task depend(in:x(:,5))
!$omp end task
!$omp task depend(in:x(5,:))
!$omp end task
end
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to