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
Break circular dependency between FIR dialect and utilities
[llvm-project.git]
/
flang
/
test
/
Semantics
/
OpenMP
/
order-clause01.f90
blob
247791fac15b497879beff5395967018db1d708c
1
! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
2
3
subroutine
omp_order
()
4
integer
::
i
,
j
=
1
5
!ERROR: At most one ORDER clause can appear on the SIMD directive
6
!$omp simd order(concurrent) order(concurrent)
7
do
i
=
1
,
10
8
j
=
j
+
1
9
end do
10
end subroutine
omp_order