URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [recursive_stack.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-frecursive" }program recursive_stackcall foo (.true.)end program recursive_stacksubroutine foo (recurse)logical recurseinteger iarray(100,100)if (recurse) theniarray(49,49) = 17call barif (iarray(49,49) .ne. 17) call abortelseiarray(49,49) = 21end ifend subroutine foosubroutine barcall foo (.false.)end subroutine bar
