URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [mainsub.f90] - Rev 695
Compare with Previous | Blame | View Log
! Program to test compilation of subroutines following the main programprogram mainsubimplicit noneinteger iexternal testi = 0call test (i)if (i .ne. 42) call abortend programsubroutine test (p)implicit noneinteger pp = 42end subroutine
