URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [array_alloc_1.f90] - Rev 694
Compare with Previous | Blame | View Log
! PR 21104. Make sure that either f() or its caller will allocate! the array data. We've decided to make the caller allocate it.! { dg-do run }program mainimplicit nonecall test (f ())containssubroutine test (x)integer, dimension (10) :: xinteger :: ido i = 1, 10if (x (i) .ne. i * 100) call abortend doend subroutine testfunction f ()integer, dimension (10) :: finteger :: iforall (i = 1:10) f (i) = i * 100end function fend program main
