Fixes #60874
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
This does not appear to solve the issue in D146766. I tried the following test case below and it still segmentation faults at run time. Could you please check if the test case works for you?
subroutine foo() implicit none integer::x,y x=0 y=2 !$omp task shared(x,y) y=x !$omp end task !$omp taskwait print*,"y=",y end subroutine foo program p implicit none call foo() end program p