OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [arraysave.f90] - Rev 843

Go to most recent revision | 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

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.