edaadf74d4
PR fortran/46753 * trans-openmp.c (gfc_trans_omp_do): Use build2_loc instead of fold_build2_loc for OMP_FOR conditions. * libgomp.fortran/pr46753.f90: New test. From-SVN: r167372
18 lines
308 B
Fortran
18 lines
308 B
Fortran
! PR fortran/46753
|
|
! { dg-do run }
|
|
|
|
integer :: i, j
|
|
j = 0
|
|
!$omp parallel do reduction(+:j)
|
|
do i = 2147483636, 2147483646
|
|
j = j + 1
|
|
end do
|
|
if (j.ne.11) call abort
|
|
j = 0
|
|
!$omp parallel do reduction(+:j)
|
|
do i = -2147483637, -2147483647, -1
|
|
j = j + 1
|
|
end do
|
|
if (j.ne.11) call abort
|
|
end
|