URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [common_pointer_1.f90] - Rev 154
Compare with Previous | Blame | View Log
! { dg-do run }! PR13415! Test pointer variables in common blocks.subroutine testimplicit nonereal, pointer :: p(:), qcommon /block/ p, qif (any (p .ne. (/1.0, 2.0/)) .or. (q .ne. 42.0)) call abort ()end subroutineprogram common_pointer_1implicit nonereal, target :: a(2), breal, pointer :: x(:), ycommon /block/ x, ya = (/1.0, 2.0/)b = 42.0x=>ay=>bcall testend program
