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/] [contained.f90] - Rev 325
Go to most recent revision | Compare with Previous | Blame | View Log
program contained
implicit none
integer i
i = 0;
call testproc (40)
if (i .ne. 42) call abort
contains
subroutine testproc (p)
implicit none
integer p
if (p .ne. 40) call abort
i = p + 2
end subroutine
end program
Go to most recent revision | Compare with Previous | Blame | View Log