Files
clang-p2996/flang/test/Semantics/OpenMP/do-schedule02.f90
Kiran Chandramohan 3323a4bd3d [Flang][OpenMP] NFC: Remove omp prefix of test files in OpenMP Semantics
For tests in the OpenMP sub-directory the `omp` prefix is removed.
2023-02-25 11:21:38 +00:00

16 lines
440 B
Fortran

!RUN: %python %S/../test_errors.py %s %flang -fopenmp
! OpenMP Version 4.5
! 2.7.1 Schedule Clause
program omp_doSchedule
integer :: i,n
real :: a(100), y(100), z(100)
integer,parameter :: b = 10
integer,parameter :: c = 11
!ERROR: The chunk size of the SCHEDULE clause must be a positive integer expression
!$omp do schedule(static,b-c)
do i=2,n+1
y(i) = z(i-1) + a(i)
end do
!$omp end do
end program omp_doSchedule