https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079
--- Comment #6 from MarkEggleston ---
Where a module is used:
module foo
implicit none
interface
subroutine dusty(n)
integer :: n
end subroutine
end interface
contains
subroutine bar(n)
integer, intent(in) :: n
re
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079
--- Comment #5 from MarkEggleston ---
Given the program below:
program main
implicit none
integer :: n
n = 5
call bar(n)
end program main
subroutine bar(n)
integer, intent(in) :: n
real :: x
print *,"bar before dusty", n
call d
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079
--- Comment #4 from MarkEggleston ---
Created attachment 46539
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=46539&action=edit
Warn about missing intent or value
Work in progress. Warns at declaration, assignment and possible modification
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079
MarkEggleston changed:
What|Removed |Added
CC||mark.eggleston at codethink
dot co
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079
Thomas Koenig changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079
kargl at gcc dot gnu.org changed:
What|Removed |Added
Priority|P3 |P5
Severity|normal