URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [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 args
subroutine test (a, b)
integer, intent (IN) :: a
integer, intent (OUT) :: b
if (a .ne. 42) call abort
b = 43
end subroutine
program args
implicit none
external test
integer i, j
i = 42
j = 0
CALL test (i, j)
if (i .ne. 42) call abort
if (j .ne. 43) call abort
i = 41
CALL test (i + 1, j)
end program