gcc/libgomp/testsuite/libgomp.fortran/tabs2.f
Tobias Burnus c425e66b27 libgomp/testsuite – use 'stop'
libgomp/
	* testsuite/libgomp.fortran/: Replace 'STOP' by 'stop'.

From-SVN: r277609
2019-10-30 12:44:54 +01:00

14 lines
230 B
Fortran

! { dg-options "-ffixed-form" }
if (b().ne.2) stop 1
contains
subroutine a
!$omp parallel
!$omp end parallel
end subroutine a
function b()
integer :: b
b = 1
!$ b = 2
end function b
end