Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Semantics / OpenMP / order-clause01.f90
blob247791fac15b497879beff5395967018db1d708c
1 ! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
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