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.2.2/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [partparm.f90] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test
subroutine test (p)
integer, dimension (3) :: p
if (any (p .ne. (/ 2, 4, 6/))) call abort
end subroutine
program partparm
implicit none
integer, dimension (2, 3) :: a
external test
a = reshape ((/ 1, 2, 3, 4, 5, 6/), (/ 2, 3/))
call test (a(2, :))
end program
Go to most recent revision | Compare with Previous | Blame | View Log