URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [procarg.f90] - Rev 695
Compare with Previous | Blame | View Log
! Pogram to testsubroutine myp (a)implicit noneinteger aif (a .ne. 42) call abortend subroutinesubroutine test2 (p)implicit noneexternal pcall p(42)end subroutinesubroutine test (p)implicit noneexternal p, test2call p(42)call test2(p)end subroutineprogram arrayioimplicit noneexternal test, mypcall test (myp)end program
