[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2021-05-14 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Jakub Jelinek  changed:

   What|Removed |Added

 CC||jakub at gcc dot gnu.org
   Target Milestone|8.5 |---

--- Comment #8 from Jakub Jelinek  ---
Dropping target milestone.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2020-03-04 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Jakub Jelinek  changed:

   What|Removed |Added

   Target Milestone|8.4 |8.5

--- Comment #7 from Jakub Jelinek  ---
GCC 8.4.0 has been released, adjusting target milestone.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2019-02-22 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Jakub Jelinek  changed:

   What|Removed |Added

   Target Milestone|8.3 |8.4

--- Comment #6 from Jakub Jelinek  ---
GCC 8.3 has been released.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2018-07-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Jakub Jelinek  changed:

   What|Removed |Added

   Target Milestone|8.2 |8.3

--- Comment #5 from Jakub Jelinek  ---
GCC 8.2 has been released.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2018-05-02 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Jakub Jelinek  changed:

   What|Removed |Added

   Target Milestone|8.0 |8.2

--- Comment #4 from Jakub Jelinek  ---
GCC 8.1 has been released.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2017-05-02 Thread janus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

janus at gcc dot gnu.org changed:

   What|Removed |Added

   Target Milestone|7.2 |8.0

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2017-05-02 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Jakub Jelinek  changed:

   What|Removed |Added

   Target Milestone|7.0 |7.2

--- Comment #3 from Jakub Jelinek  ---
GCC 7.1 has been released.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2016-11-07 Thread janus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

janus at gcc dot gnu.org changed:

   What|Removed |Added

   Keywords||wrong-code
 CC||janus at gcc dot gnu.org
   Target Milestone|--- |7.0

--- Comment #2 from janus at gcc dot gnu.org ---
Slightly simpler test case:


program test
  type :: t
integer :: a
  end type
  type, extends(t) :: tt
integer :: b
  end type
  type :: group
class(t), allocatable, dimension(:) :: unit
  end type

  type(group) :: g
  allocate(tt::g%unit(10))
  g%unit(:)%a = 1

  select type (units => g%unit)
  type is (tt)
do i=1,10
  write(*,*) units(i)%a, units(i)%b
end do
  end select
end program test


Note: When removing the 'group' type and declaring 'unit' directly in the main
program, the correct output is obtained.

[Bug fortran/78009] [OOP] polymorphic component of derived type array slice handling error

2016-10-18 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78009

Dominique d'Humieres  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2016-10-18
 Ever confirmed|0   |1

--- Comment #1 from Dominique d'Humieres  ---
Confirmed from 4.8 up to trunk (7.0).