URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [gomp/] [appendix-a/] [a.22.5.f90] - Rev 816
Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-require-effective-target tls }
SUBROUTINE A22_5_WRONG()
COMMON /T/ A
!$OMP THREADPRIVATE(/T/)
CONTAINS
SUBROUTINE A22_5S_WRONG()
!$OMP PARALLEL COPYIN(/T/) ! { dg-error "COMMON block" }
!non-conforming because /T/ not declared in A22_5S_WRONG
!$OMP END PARALLEL ! { dg-error "Unexpected" }
END SUBROUTINE A22_5S_WRONG
END SUBROUTINE A22_5_WRONG