view libgomp/testsuite/libgomp.fortran/tabs1.f90 @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents a06113de4d67
children 1830386684a0
line wrap: on
line source

	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