http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59252

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
                 CC|                            |janus at gcc dot gnu.org
            Summary|wrong code generation for   |wrong code generation for
                   |allocatable dummy arguments |allocatable character
                   |                            |component

--- Comment #2 from janus at gcc dot gnu.org ---
Unrelated to dummy arguments. Reduced test case:


  implicit none

  type branch_plot_results_ppv_type
     character, allocatable :: label
  end type

  type(branch_plot_results_ppv_type), allocatable :: appv(:)

  allocate(appv(2))

end

Reply via email to