[Bug fortran/88079] warn about procedure arguments without INTENT

2019-07-01 Thread mark.eggleston at codethink dot com
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

[Bug fortran/88079] warn about procedure arguments without INTENT

2019-07-01 Thread mark.eggleston at codethink dot com
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

[Bug fortran/88079] warn about procedure arguments without INTENT

2019-07-01 Thread mark.eggleston at codethink dot com
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=edit Warn about missing intent or value Work in progress. Warns at declaration, assignment and possible modification of a

[Bug fortran/88079] warn about procedure arguments without INTENT

2019-06-27 Thread mark.eggleston at codethink dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079 MarkEggleston changed: What|Removed |Added CC||mark.eggleston at codethink dot co

[Bug fortran/88079] warn about procedure arguments without INTENT

2019-01-15 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88079 Thomas Koenig changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/88079] warn about procedure arguments without INTENT

2018-11-30 Thread kargl at gcc dot gnu.org
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