URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [args.f90] - Rev 303
Compare with Previous | Blame | View Log
! Program to test procudure argssubroutine test (a, b)integer, intent (IN) :: ainteger, intent (OUT) :: bif (a .ne. 42) call abortb = 43end subroutineprogram argsimplicit noneexternal testinteger i, ji = 42j = 0CALL test (i, j)if (i .ne. 42) call abortif (j .ne. 43) call aborti = 41CALL test (i + 1, j)end program
