URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [gomp/] [appendix-a/] [a.26.2.f90] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
MODULE A26_2
REAL A
CONTAINS
SUBROUTINE G(K)
REAL K
A = K ! This is A in module A26_2, not the private
! A in F
END SUBROUTINE G
SUBROUTINE F(N)
INTEGER N
REAL A
INTEGER I
!$OMP PARALLEL DO PRIVATE(A)
DO I = 1,N
A=I
CALL G(A*2)
ENDDO
!$OMP END PARALLEL DO
END SUBROUTINE F
END MODULE A26_2
! { dg-final { cleanup-modules "A26_2" } }
Go to most recent revision | Compare with Previous | Blame | View Log