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

--- Comment #19 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Comment on attachment 44718
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=44718
Affected module and example main program

The only way at the moment would be to change

program testprog

  use testmodule

  type(instlist_type),target    :: instlist

  instlist%min_tstart = 42
  instlist%max_tstop = 101

  print *, "Hello world"

end program testprog

into

program testprog

  use testmodule

  type(instlist_type),target, allocatable    :: instlist

  allocate (instlist)
  instlist%min_tstart = 42
  instlist%max_tstop = 101

  print *, "Hello world"

end program testprog

if instlist is large enough, possibly in a front-end pass.

Reply via email to