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
/
reduction13.f90
blob
edb153ce20ef6be1b343c2078c20672a0371e9de
1
! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
2
! OpenMP Version 4.5
3
! 2.15.3.6 Reduction Clause
4
program
omp_reduction
5
integer
::
k
6
! misspelling. Should be "min"
7
!ERROR: Invalid reduction operator in REDUCTION clause.
8
!$omp parallel reduction(.min.:k)
9
!$omp end parallel
10
end program
omp_reduction