brintos

brintos / llvm-project-archived public Read only

0
0
Text · 286 B · 3ca091e Raw
10 lines · plain
1!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=45 -Werror2 3subroutine f00(x)4  integer :: x(10)5!WARNING: 'iterator' modifier is not supported in OpenMP v4.5, try -fopenmp-version=506  !$omp task depend(iterator(i = 1:10), in: x(i))7  x = 08  !$omp end task9end10