[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / flang / test / Semantics / OpenMP / depend06.f90
blobd2e6a114676c3a9c99cac09180bd07bae5622f0e
1 !RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=45 -Werror
3 subroutine f00(x)
4 integer :: x
5 !WARNING: INOUTSET task dependence type is not supported in OpenMP v4.5, try -fopenmp-version=52
6 !$omp task depend(inoutset: x)
7 x = x + 1
8 !$omp end task
9 end
11 subroutine f01(x)
12 integer :: x
13 !WARNING: MUTEXINOUTSET task dependence type is not supported in OpenMP v4.5, try -fopenmp-version=50
14 !$omp task depend(mutexinoutset: x)
15 x = x + 1
16 !$omp end task
17 end