]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/gfortran.dg/gomp/pr77516.f90
omp-low.c (lower_omp_target): Fix up argument to is_reference.
[gcc.git] / gcc / testsuite / gfortran.dg / gomp / pr77516.f90
CommitLineData
8ebc1e0f
JJ
1! PR fortran/77516
2! { dg-do compile }
3
4program pr77516
5 integer :: i, x
6 x = 0
b4c3a85b 7!$omp simd safelen(0) reduction(+:x) ! { dg-warning "must be positive" }
8ebc1e0f
JJ
8 do i = 1, 8
9 x = x + 1
10 end do
11 print *, x
12end
This page took 0.27634 seconds and 5 git commands to generate.