https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108925

Mikael Morin <mikael at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikael at gcc dot gnu.org

--- Comment #1 from Mikael Morin <mikael at gcc dot gnu.org> ---
Can't reproduce with simple examples, testcase?
I have used the following case, it does show some leaks, but none with
load_needed in the backtrace.

module m
  integer i
end module m

module n
  use m
contains
  subroutine s(a)
    integer a
    i = a
  end subroutine
end module n

program p
  use n
  call s(0)
  print *, i
end program

Reply via email to