c425e66b27
libgomp/ * testsuite/libgomp.fortran/: Replace 'STOP' by 'stop'. From-SVN: r277609
10 lines
173 B
Fortran
10 lines
173 B
Fortran
! { dg-do run }
|
|
! PR fortran/28390
|
|
program pr28390
|
|
integer i
|
|
!$omp parallel do lastprivate(i)
|
|
do i=1,100
|
|
end do
|
|
if (i.ne.101) stop 1
|
|
end
|