brintos

brintos / llvm-project-archived public Read only

0
0
Text · 345 B · e5c1346 Raw
16 lines · plain
1! Testing the Semantics of tile2!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=513 4 5subroutine loop_assoc6  implicit none7  integer :: i = 08 9  !$omp tile sizes(2)10  !ERROR: The associated loop of a loop-associated directive cannot be a DO WHILE.11  do while (i <= 10)12    i = i + 113    print *, i14  end do15end subroutine16