repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
OpenMP
/
depend05.f90
blob
3ca091ef3187d15161d23fb2dac58bf28aa75353
1
!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=45 -Werror
2
3
subroutine
f00
(
x
)
4
integer
::
x
(
10
)
5
!WARNING: 'iterator' modifier is not supported in OpenMP v4.5, try -fopenmp-version=50
6
!$omp task depend(iterator(i = 1:10), in: x(i))
7
x
=
0
8
!$omp end task
9
end