URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgomp/] [testsuite/] [libgomp.fortran/] [appendix-a/] [a10.1.f90] - Rev 735
Compare with Previous | Blame | View Log
! { dg-do run }SUBROUTINE WORK1()END SUBROUTINE WORK1SUBROUTINE WORK2()END SUBROUTINE WORK2PROGRAM A10!$OMP PARALLEL!$OMP SINGLEprint *, "Beginning work1."!$OMP END SINGLECALL WORK1()!$OMP SINGLEprint *, "Finishing work1."!$OMP END SINGLE!$OMP SINGLEprint *, "Finished work1 and beginning work2."!$OMP END SINGLE NOWAITCALL WORK2()!$OMP END PARALLELEND PROGRAM A10
