Commit 11c7f788 by Dominique d'Humieres Committed by Dominique d'Humieres

re PR fortran/54224 (Warn for unused internal procedures)

2015-11-06  Dominique d'Humieres <dominiq@lps.ens.fr>

	PR fortran/54224
	* gfortran.dg/warn_unused_function_2.f90: Add two new 
	"defined but not used" subroutines.

From-SVN: r229894
parent 41fdbd54
2015-11-06 Dominique d'Humieres <dominiq@lps.ens.fr>
PR fortran/54224
* gfortran.dg/warn_unused_function_2.f90: Add two new
"defined but not used" subroutines.
2015-11-06 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/gomp/ordered-2.c (f1): Expect an extra error.
......
......@@ -2,6 +2,7 @@
! { dg-options "-Wall" }
!
! [4.8 Regression] PR 54997: -Wunused-function gives false warnings
! PR 54224: missing warnings with -Wunused-function
!
! Contributed by Janus Weil <janus@gcc.gnu.org>
......@@ -14,6 +15,9 @@ contains
subroutine s1 ! { dg-warning "defined but not used" }
call s2(s3)
contains
subroutine s4 ! { dg-warning "defined but not used" }
end subroutine
end subroutine
subroutine s2(dummy) ! { dg-warning "Unused dummy argument" }
......@@ -30,5 +34,10 @@ subroutine sub
entry en
end subroutine
program test
contains
subroutine s5 ! { dg-warning "defined but not used" }
end subroutine
end
! { dg-final { cleanup-modules "m" } }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment