15 lines · plain
1! Testing the Semantics of tile2!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=513 4 5subroutine insufficient_loops6 implicit none7 integer i8 9 !ERROR: The SIZES clause has more entries than there are nested canonical loops.10 !$omp tile sizes(2, 2)11 do i = 1, 512 print *, i13 end do14end subroutine15