blob: 9c733dadbc655f02b93d0b313bdb79a2da475842 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %flang_fc1 -fopenmp
! REQUIRES: shell
! OpenMP Version 4.5
! 2.15.3.6 Reduction Clause
program omp_reduction
integer :: i
integer :: k = 10
!ERROR: Invalid reduction identifier in REDUCTION clause.
!$omp parallel do reduction(foo:k)
do i = 1, 10
k = foo(k)
end do
!$omp end parallel do
end program omp_reduction