[Bug fortran/45516] [F08] allocatable compontents of recursive type

2020-10-21 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 --- Comment #12 from CVS Commits --- The master branch has been updated by Tobias Burnus : https://gcc.gnu.org/g:310fe80babe04ccb7d2e15c8fca7dc98180701a8 commit r11-4186-g310fe80babe04ccb7d2e15c8fca7dc98180701a8 Author: Tobias Burnus Date: W

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2016-12-04 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 Paul Thomas changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2016-12-04 Thread janus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 --- Comment #10 from janus at gcc dot gnu.org --- (In reply to janus from comment #9) > Paul, can we close this PR, or is there anything left to do? ping!

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2016-11-12 Thread janus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 janus at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #9 from j

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2016-10-25 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 --- Comment #8 from Paul Thomas --- Author: pault Date: Tue Oct 25 20:37:05 2016 New Revision: 241539 URL: https://gcc.gnu.org/viewcvs?rev=241539&root=gcc&view=rev Log: 2016-10-25 Paul Thomas PR fortran/45516 * class.c (gfc_f

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2016-10-23 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 Paul Thomas changed: What|Removed |Added CC||pault at gcc dot gnu.org Assigne

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2012-08-29 Thread burnus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 --- Comment #6 from Tobias Burnus 2012-08-29 09:18:01 UTC --- Test case by Wolfgang Kilian in the "Function questions?" thread: https://groups.google.com/d/msg/comp.lang.fortran/r4PVbtaBnFM/hufoSWKHDBIJ When handling the deallocation, we need to

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2011-02-06 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 --- Comment #5 from janus at gcc dot gnu.org 2011-02-06 12:36:40 UTC --- With the patch in comment #4, we currently get an ICE on the following test case: type entry1 real :: value type(entry1), allocatable :: next end type entry1 type(entry

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2011-02-06 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 --- Comment #4 from janus at gcc dot gnu.org 2011-02-06 12:28:42 UTC --- We also need to adjust gfc_get_derived_type, to avoid running into an infinite loop. Updated patch: Index: gcc/testsuite/gfortran.dg/class_2.f03

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2011-02-03 Thread janus at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45516 janus at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2010-09-03 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2010-09-03 12:12 --- (In reply to comment #1) > Here is a patch to accept the type declaration in comment #0: Well, you at least need to use gfc_notify_std(GFC_STD_F2008, ... And one should make sure that the allocation/clean up works as

[Bug fortran/45516] [F08] allocatable compontents of recursive type

2010-09-03 Thread janus at gcc dot gnu dot org
--- Comment #1 from janus at gcc dot gnu dot org 2010-09-03 09:59 --- Here is a patch to accept the type declaration in comment #0: Index: decl.c === --- decl.c (revision 163798) +++ decl.c (working copy) @@ -1494