brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · bb6e19e Raw
11 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp -fopenmp-version=502 3subroutine omp_order()4 integer :: i, j = 15 !ERROR: At most one ORDER clause can appear on the SIMD directive6 !$omp simd order(concurrent) order(concurrent)7 do i=1,108  j = j + 19 end do10end subroutine omp_order11