URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [common_pointer_1.f90] - Rev 700
Go to most recent revision | 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
Go to most recent revision | Compare with Previous | Blame | View Log
