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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [recursive_check_12.f90] - Rev 715

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

! { dg-do run }
! { dg-options "-fcheck=recursion" }
!
! PR fortran/39577
!
! OK - no recursion
module m
  implicit none
contains
  subroutine f(rec) 
    logical :: rec
    if(rec) then
      call h()
    end if
    return
  entry g()
  end subroutine f
  subroutine h()
    call f(.false.)
  end subroutine h
end module m

program test
 use m
 implicit none
 call f(.false.)
 call f(.false.)
end program test
! { dg-final { cleanup-modules "m" } }

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.