Files
clang-p2996/flang/test/Semantics/omp-loop-simd01.f90
Michael Kruse 58c3f20bbf [flang][windows] Run regression tests under Windows. NFCI.
Allow the lit test suite to run under Windows. This encompasses the following changes:

 * Define `lit_tools_dir` for flang's test configuration
 * Replace `(<command> || true)` idiom with `not <command>`
 * Add `REQUIRES: shell` on tests that invoke a shell script

Reviewed By: awarzynski

Differential Revision: https://reviews.llvm.org/D89368
2021-06-10 05:13:44 -05:00

25 lines
411 B
Fortran

! RUN: %S/test_errors.sh %s %t %flang -fopenmp
! REQUIRES: shell
! OpenMP Version 4.5
! 2.8.3 Loop simd Construct
! Semantic error for correct test case.
program omp_loop_simd
integer i, j, k, l
k = 0;
l = 0
!$omp parallel do simd linear(l)
do i = 1, 10
do j = 1, 10
print *, "omp loop simd"
k = k + 1
l = l + 1
end do
end do
print *, k, l
end program omp_loop_simd