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/] [arraysave.f90] - Rev 154
Compare with Previous | Blame | View Log
! Program to test arrays with the save attribute
program testarray
implicit none
integer, save, dimension (6, 5) :: a, b
a = 0
a(1, 1) = 42
a(6, 5) = 43
b(:,1:5) = a
call fn (a)
contains
subroutine fn (a)
implicit none
integer, dimension(1:, 1:) :: a
integer, dimension(2) :: b
b = ubound (a)
if (any (b .ne. (/6, 5/))) call abort
if (a(1, 1) .ne. 42) call abort
if (a(6, 5) .ne. 43) call abort
end subroutine
end program