public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521
@ 2013-07-30  6:21 Joost.VandeVondele at mat dot ethz.ch
  2013-07-30  8:27 ` [Bug fortran/58026] [4.9 Regression] " dominiq at lps dot ens.fr
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Joost.VandeVondele at mat dot ethz.ch @ 2013-07-30  6:21 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 58026
           Summary: internal compiler error: in
                    generate_finalization_wrapper, at fortran/class.c:1521
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Joost.VandeVondele at mat dot ethz.ch

Following invalid testcase yields and ICE with current trunk.

> cat small.f90
  type sysmtx_t
     type(ext_complex_t), allocatable :: S(:)       ! Block scales
  end type sysmtx_t
contains
  subroutine init (this, n, n_e, n_i, n_o)
    class(sysmtx_t), intent(out) :: this

> gfortran small.f90
small.f90:2.40:

     type(ext_complex_t), allocatable :: S(:)       ! Block scales
                                        1
Error: Derived type at (1) has not been previously defined and so cannot appear
in a derived type definition
f951: internal compiler error: in generate_finalization_wrapper, at
fortran/class.c:1521
0x54f091 generate_finalization_wrapper
    ../../gcc/gcc/fortran/class.c:1520
0x54f091 gfc_find_derived_vtab(gfc_symbol*)
    ../../gcc/gcc/fortran/class.c:2394
0x54fc82 gfc_build_class_symbol(gfc_typespec*, symbol_attribute*,
gfc_array_spec**, bool)


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
@ 2013-07-30  8:27 ` dominiq at lps dot ens.fr
  2013-07-30 11:42 ` burnus at gcc dot gnu.org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: dominiq at lps dot ens.fr @ 2013-07-30  8:27 UTC (permalink / raw)
  To: gcc-bugs

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

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-07-30
                 CC|                            |burnus@net-b.de
            Summary|internal compiler error: in |[4.9 Regression] internal
                   |generate_finalization_wrapp |compiler error: in
                   |er, at fortran/class.c:1521 |generate_finalization_wrapp
                   |                            |er, at fortran/class.c:1521
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
The ICE has been introduced between revisions 198750 (2013-05-09) and 199418
(2013-05-29): r199409?


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
  2013-07-30  8:27 ` [Bug fortran/58026] [4.9 Regression] " dominiq at lps dot ens.fr
@ 2013-07-30 11:42 ` burnus at gcc dot gnu.org
  2013-07-30 12:19 ` [Bug fortran/58026] [4.9 Regression] [OOP] ICE " janus at gcc dot gnu.org
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: burnus at gcc dot gnu.org @ 2013-07-30 11:42 UTC (permalink / raw)
  To: gcc-bugs

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

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |error-recovery,
                   |                            |ice-on-invalid-code
                 CC|                            |burnus at gcc dot gnu.org

--- Comment #2 from Tobias Burnus <burnus at gcc dot gnu.org> ---
Failing is the following assert in generate_finalization_wrapper:

  /* If there is no new finalizer and no new allocatable, return with
     an expr to the ancestor's one.  */
  if (!expr_null_wrapper && !finalizable_comp
      && (!derived->f2k_derived || !derived->f2k_derived->finalizers))
    {
      gcc_assert (ancestor_wrapper && ancestor_wrapper->ref == NULL
                  && ancestor_wrapper->expr_type == EXPR_VARIABLE);


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
  2013-07-30  8:27 ` [Bug fortran/58026] [4.9 Regression] " dominiq at lps dot ens.fr
  2013-07-30 11:42 ` burnus at gcc dot gnu.org
@ 2013-07-30 12:19 ` janus at gcc dot gnu.org
  2013-07-30 12:21 ` janus at gcc dot gnu.org
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2013-07-30 12:19 UTC (permalink / raw)
  To: gcc-bugs

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

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |janus at gcc dot gnu.org
            Summary|[4.9 Regression] internal   |[4.9 Regression] [OOP] ICE
                   |compiler error: in          |in
                   |generate_finalization_wrapp |generate_finalization_wrapp
                   |er, at fortran/class.c:1521 |er, at fortran/class.c:1521

--- Comment #3 from janus at gcc dot gnu.org ---
Slightly modified test case:


  type sysmtx_t
     type(ext_complex_t), allocatable :: S(:)
  end type
contains
  subroutine init (this)
    class(sysmtx_t) :: this 
  end subroutine
end


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (2 preceding siblings ...)
  2013-07-30 12:19 ` [Bug fortran/58026] [4.9 Regression] [OOP] ICE " janus at gcc dot gnu.org
@ 2013-07-30 12:21 ` janus at gcc dot gnu.org
  2013-07-30 14:26 ` janus at gcc dot gnu.org
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2013-07-30 12:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from janus at gcc dot gnu.org ---
Draft patch:

Index: gcc/fortran/decl.c
===================================================================
--- gcc/fortran/decl.c    (revision 201331)
+++ gcc/fortran/decl.c    (working copy)
@@ -4286,12 +4286,10 @@ gfc_match_data_decl (void)
           || current_ts.u.derived->attr.zero_comp))
     goto ok;

-      /* Now we have an error, which we signal, and then fix up
-     because the knock-on is plain and simple confusing.  */
       gfc_error_now ("Derived type at %C has not been previously defined "
              "and so cannot appear in a derived type definition");
-      current_attr.pointer = 1;
-      goto ok;
+      m = MATCH_ERROR;
+      goto cleanup;
     }

 ok:


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (3 preceding siblings ...)
  2013-07-30 12:21 ` janus at gcc dot gnu.org
@ 2013-07-30 14:26 ` janus at gcc dot gnu.org
  2013-08-28  9:18 ` rguenth at gcc dot gnu.org
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2013-07-30 14:26 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from janus at gcc dot gnu.org ---
(In reply to janus from comment #4)
> Draft patch:

... seems to regtest cleanly.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (4 preceding siblings ...)
  2013-07-30 14:26 ` janus at gcc dot gnu.org
@ 2013-08-28  9:18 ` rguenth at gcc dot gnu.org
  2013-10-30 13:18 ` rguenth at gcc dot gnu.org
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-08-28  9:18 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.9.0


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (5 preceding siblings ...)
  2013-08-28  9:18 ` rguenth at gcc dot gnu.org
@ 2013-10-30 13:18 ` rguenth at gcc dot gnu.org
  2013-11-25 20:48 ` janus at gcc dot gnu.org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-10-30 13:18 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P5


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (6 preceding siblings ...)
  2013-10-30 13:18 ` rguenth at gcc dot gnu.org
@ 2013-11-25 20:48 ` janus at gcc dot gnu.org
  2013-11-25 20:57 ` burnus at gcc dot gnu.org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2013-11-25 20:48 UTC (permalink / raw)
  To: gcc-bugs

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

janus at gcc dot gnu.org changed:

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

--- Comment #6 from janus at gcc dot gnu.org ---
For the record: The code that I'm proposing to remove in comment 4 has been
added by Paul in r105913:

http://gcc.gnu.org/viewcvs/gcc?view=revision&revision=105913


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (7 preceding siblings ...)
  2013-11-25 20:48 ` janus at gcc dot gnu.org
@ 2013-11-25 20:57 ` burnus at gcc dot gnu.org
  2014-01-09 10:49 ` janus at gcc dot gnu.org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: burnus at gcc dot gnu.org @ 2013-11-25 20:57 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Tobias Burnus <burnus at gcc dot gnu.org> ---
(In reply to janus from comment #6)
> For the record: The code that I'm proposing to remove in comment 4 has been
> added by Paul in r105913:

For PR24158 (ice-on-invalid-code), which was on 2005-10-26.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (8 preceding siblings ...)
  2013-11-25 20:57 ` burnus at gcc dot gnu.org
@ 2014-01-09 10:49 ` janus at gcc dot gnu.org
  2014-01-09 13:45 ` janus at gcc dot gnu.org
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2014-01-09 10:49 UTC (permalink / raw)
  To: gcc-bugs

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

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |janus at gcc dot gnu.org

--- Comment #8 from janus at gcc dot gnu.org ---
At r206460, I don't see the ICE any more. Possibly is has been fixed by r206379
(for PR59589)? Can someone confirm that it's gone?


The output I now get for comment 3 (with 4.8 and trunk) is as follows:

$ gfortran-4.9 c3.f90 
c3.f90:3.40:

     type(ext_complex_t), allocatable :: S(:)
                                        1
Error: Derived type at (1) has not been previously defined and so cannot appear
in a derived type definition
c3.f90:3.45:

     type(ext_complex_t), allocatable :: S(:)
                                             1
Error: The pointer component 's' of 'sysmtx_t' at (1) is a type that has not
been declared
c3.f90:3.45:

     type(ext_complex_t), allocatable :: S(:)
                                             1
Error: The pointer component 's' of 'sysmtx_t' at (1) is a type that has not
been declared
c3.f90:3.45:

     type(ext_complex_t), allocatable :: S(:)
                                             1
Error: The pointer component 's' of 'sysmtx_t' at (1) is a type that has not
been declared


The first error is perfectly ok, but the following three (about a 'pointer
component') are bogus. They are indeed removed by the patch in comment 4, so I
think applying that patch still makes sense.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [4.9 Regression] [OOP] ICE in generate_finalization_wrapper, at fortran/class.c:1521
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (9 preceding siblings ...)
  2014-01-09 10:49 ` janus at gcc dot gnu.org
@ 2014-01-09 13:45 ` janus at gcc dot gnu.org
  2014-01-09 14:14 ` [Bug fortran/58026] [OOP] Bad error recovery for allocatable component of undeclared type janus at gcc dot gnu.org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2014-01-09 13:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #9 from janus at gcc dot gnu.org ---
(In reply to Tobias Burnus from comment #7)
> > For the record: The code that I'm proposing to remove in comment 4 has been
> > added by Paul in r105913:
> 
> For PR24158 (ice-on-invalid-code), which was on 2005-10-26.

Btw: The corresponding test cases are

derived_recursion.f90
implicit_actual.f90

The patch does not change the diagnostics for these cases (in particular there
is no 'confusing knock-on).


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [OOP] Bad error recovery for allocatable component of undeclared type
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (10 preceding siblings ...)
  2014-01-09 13:45 ` janus at gcc dot gnu.org
@ 2014-01-09 14:14 ` janus at gcc dot gnu.org
  2014-01-09 14:28 ` janus at gcc dot gnu.org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2014-01-09 14:14 UTC (permalink / raw)
  To: gcc-bugs

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

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|ice-on-invalid-code         |
            Summary|[4.9 Regression] [OOP] ICE  |[OOP] Bad error recovery
                   |in                          |for allocatable component
                   |generate_finalization_wrapp |of undeclared type
                   |er, at fortran/class.c:1521 |

--- Comment #10 from janus at gcc dot gnu.org ---
(In reply to janus from comment #8)
> At r206460, I don't see the ICE any more. Possibly is has been fixed by
> r206379 (for PR59589)? Can someone confirm that it's gone?

Reverting r206379 brings back the ICE, so indeed this revision has fixed it
apparently.

So: The ICE regression is fixed and only the error-recovery problem of comment
8 persists.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [OOP] Bad error recovery for allocatable component of undeclared type
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (11 preceding siblings ...)
  2014-01-09 14:14 ` [Bug fortran/58026] [OOP] Bad error recovery for allocatable component of undeclared type janus at gcc dot gnu.org
@ 2014-01-09 14:28 ` janus at gcc dot gnu.org
  2014-01-12 11:09 ` [Bug fortran/58026] [F03] " janus at gcc dot gnu.org
  2014-01-12 11:12 ` janus at gcc dot gnu.org
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2014-01-09 14:28 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from janus at gcc dot gnu.org ---
Further reduced test case for the error recovery:

type sysmtx_t
   type(ext_complex_t), allocatable :: S(:)
end type
end


Trunk (and 4.4 - 4.8) yield:


c3.f90:3.40:

     type(ext_complex_t), allocatable :: S(:)
                                        1
Error: Derived type at (1) has not been previously defined and so cannot appear
in a derived type definition
c3.f90:3.45:

     type(ext_complex_t), allocatable :: S(:)
                                             1
Error: The pointer component 's' of 'sysmtx_t' at (1) is a type that has not
been declared



With the patch in comment 4 the second error, which is bogus, is removed.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [F03] Bad error recovery for allocatable component of undeclared type
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (12 preceding siblings ...)
  2014-01-09 14:28 ` janus at gcc dot gnu.org
@ 2014-01-12 11:09 ` janus at gcc dot gnu.org
  2014-01-12 11:12 ` janus at gcc dot gnu.org
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2014-01-12 11:09 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #12 from janus at gcc dot gnu.org ---
Author: janus
Date: Sun Jan 12 11:08:31 2014
New Revision: 206564

URL: http://gcc.gnu.org/viewcvs?rev=206564&root=gcc&view=rev
Log:
2014-01-12  Janus Weil  <janus@gcc.gnu.org>

    PR fortran/58026
    * decl.c (gfc_match_data_decl): Improve error recovery.


2014-01-12  Janus Weil  <janus@gcc.gnu.org>

    PR fortran/58026
    * gfortran.dg/alloc_comp_basics_6.f90: New.

Added:
    trunk/gcc/testsuite/gfortran.dg/alloc_comp_basics_6.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/decl.c
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Bug fortran/58026] [F03] Bad error recovery for allocatable component of undeclared type
  2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
                   ` (13 preceding siblings ...)
  2014-01-12 11:09 ` [Bug fortran/58026] [F03] " janus at gcc dot gnu.org
@ 2014-01-12 11:12 ` janus at gcc dot gnu.org
  14 siblings, 0 replies; 16+ messages in thread
From: janus at gcc dot gnu.org @ 2014-01-12 11:12 UTC (permalink / raw)
  To: gcc-bugs

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

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from janus at gcc dot gnu.org ---
(In reply to janus from comment #10)
> So: The ICE regression is fixed and only the error-recovery problem of
> comment 8 persists.

... which is fixed on 4.9 trunk by r206564. Closing.


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2014-01-12 11:12 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-30  6:21 [Bug fortran/58026] New: internal compiler error: in generate_finalization_wrapper, at fortran/class.c:1521 Joost.VandeVondele at mat dot ethz.ch
2013-07-30  8:27 ` [Bug fortran/58026] [4.9 Regression] " dominiq at lps dot ens.fr
2013-07-30 11:42 ` burnus at gcc dot gnu.org
2013-07-30 12:19 ` [Bug fortran/58026] [4.9 Regression] [OOP] ICE " janus at gcc dot gnu.org
2013-07-30 12:21 ` janus at gcc dot gnu.org
2013-07-30 14:26 ` janus at gcc dot gnu.org
2013-08-28  9:18 ` rguenth at gcc dot gnu.org
2013-10-30 13:18 ` rguenth at gcc dot gnu.org
2013-11-25 20:48 ` janus at gcc dot gnu.org
2013-11-25 20:57 ` burnus at gcc dot gnu.org
2014-01-09 10:49 ` janus at gcc dot gnu.org
2014-01-09 13:45 ` janus at gcc dot gnu.org
2014-01-09 14:14 ` [Bug fortran/58026] [OOP] Bad error recovery for allocatable component of undeclared type janus at gcc dot gnu.org
2014-01-09 14:28 ` janus at gcc dot gnu.org
2014-01-12 11:09 ` [Bug fortran/58026] [F03] " janus at gcc dot gnu.org
2014-01-12 11:12 ` janus at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).