URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [whole_file_21.f90] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do link }
! PR fortran/40011
!
! Contributed by Joost VandeVondele
!
!
! Before no "one" function was generated with -fwhole-file.
!
!
SUBROUTINE one ( )
END SUBROUTINE one
SUBROUTINE two ( )
END SUBROUTINE two
MODULE mod
CONTAINS
SUBROUTINE three ( )
CALL two ( )
END SUBROUTINE three
SUBROUTINE four ( )
CALL one ( )
END SUBROUTINE four
END MODULE mod
END
! { dg-final { cleanup-modules "mod" } }
Go to most recent revision | Compare with Previous | Blame | View Log