public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/56674] New: ICE in check_sym_interfaces
@ 2013-03-21 12:26 Joost.VandeVondele at mat dot ethz.ch
  2013-03-21 12:32 ` [Bug fortran/56674] [4.7/4.8/4.9 Regression] " Joost.VandeVondele at mat dot ethz.ch
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Joost.VandeVondele at mat dot ethz.ch @ 2013-03-21 12:26 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56674
           Summary: ICE in check_sym_interfaces
    Classification: Unclassified
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: Joost.VandeVondele@mat.ethz.ch


The following invalid testcase produces and ICE with current trunk.

> cat bug.f90 
MODULE kinds
  INTEGER, PARAMETER :: dp=8,int_8=8
END MODULE 
MODULE realspace_grid_types
  USE kinds,                           ONLY: dp, int_8
  PUBLIC :: realspace_grid_type,&
            realspace_grid_input_type
  END TYPE realspace_grid_desc_type
  TYPE realspace_grid_desc_p_type
     TYPE(realspace_grid_desc_type), POINTER :: rs_desc
  END TYPE realspace_grid_desc_p_type
CONTAINS
  SUBROUTINE rs_grid_create_descriptor ( desc, pw_grid, input_settings, error)
    TYPE(realspace_grid_input_type), &
    IF ( pw_grid % para % mode == PW_MODE_LOCAL ) THEN
  END SUBROUTINE
END MODULE realspace_grid_types


> gfortran -v  bug.f90 
Driving: gfortran -v bug.f90 -l gfortran -l m -shared-libgcc
Using built-in specs.
COLLECT_GCC=gfortran
COLLECT_LTO_WRAPPER=/data/vjoost/gnu/gcc_trunk/install/libexec/gcc/x86_64-unknown-linux-gnu/4.9.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc/configure --prefix=/data/vjoost/gnu/gcc_trunk/install
--enable-languages=c,c++,fortran --disable-multilib --enable-plugins
--enable-lto --disable-bootstrap
Thread model: posix
gcc version 4.9.0 20130321 (experimental) [trunk revision 196847] (GCC) 
COLLECT_GCC_OPTIONS='-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64'

/data/vjoost/gnu/gcc_trunk/install/libexec/gcc/x86_64-unknown-linux-gnu/4.9.0/f951
bug.f90 -quiet -dumpbase bug.f90 -mtune=generic -march=x86-64 -auxbase bug
-version -fintrinsic-modules-path
/data/vjoost/gnu/gcc_trunk/install/lib/gcc/x86_64-unknown-linux-gnu/4.9.0/finclude
-o /tmp/ccaTm8lw.s
GNU Fortran (GCC) version 4.9.0 20130321 (experimental) [trunk revision 196847]
(x86_64-unknown-linux-gnu)
    compiled by GNU C version 4.7.2 20120816 (prerelease) [gcc-4_7-branch
revision 190437], GMP version 4.3.2, MPFR version 2.4.2, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
GNU Fortran (GCC) version 4.9.0 20130321 (experimental) [trunk revision 196847]
(x86_64-unknown-linux-gnu)
    compiled by GNU C version 4.7.2 20120816 (prerelease) [gcc-4_7-branch
revision 190437], GMP version 4.3.2, MPFR version 2.4.2, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
bug.f90:8.5:

  END TYPE realspace_grid_desc_type
     1
Error: Expecting END MODULE statement at (1)
bug.f90:14.35:

    TYPE(realspace_grid_input_type), &
                                   1
Error: Derived type 'realspace_grid_input_type' at (1) is being used before it
is defined
bug.f90:10.55:

     TYPE(realspace_grid_desc_type), POINTER :: rs_desc
                                                       1
Error: The pointer component 'rs_desc' of 'realspace_grid_desc_p_type' at (1)
is a type that has not been declared
f951: internal compiler error: Segmentation fault
0x994a0f crash_signal
    ../../gcc/gcc/toplev.c:332
0x55650b show_locus
    ../../gcc/gcc/fortran/error.c:310
0x556d77 error_print
    ../../gcc/gcc/fortran/error.c:666
0x5573a8 gfc_error(char const*, ...)
    ../../gcc/gcc/fortran/error.c:961
0x55fda7 check_interface0
    ../../gcc/gcc/fortran/interface.c:1469
0x562194 check_sym_interfaces
    ../../gcc/gcc/fortran/interface.c:1581
0x5c8023 do_traverse_symtree
    ../../gcc/gcc/fortran/symbol.c:3575
0x562279 gfc_check_interfaces(gfc_namespace*)
    ../../gcc/gcc/fortran/interface.c:1691
0x5b3bbb resolve_types
    ../../gcc/gcc/fortran/resolve.c:14915
0x5a7773 gfc_resolve
    ../../gcc/gcc/fortran/resolve.c:14999
0x5a7773 gfc_resolve(gfc_namespace*)
    ../../gcc/gcc/fortran/resolve.c:14987
0x59d287 gfc_parse_file()
    ../../gcc/gcc/fortran/parse.c:4602
0x5da8d5 gfc_be_parse_file
    ../../gcc/gcc/fortran/f95-lang.c:189
Please submit a full bug report,


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
@ 2013-03-21 12:32 ` Joost.VandeVondele at mat dot ethz.ch
  2013-03-21 12:46 ` rguenth at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: Joost.VandeVondele at mat dot ethz.ch @ 2013-03-21 12:32 UTC (permalink / raw)
  To: gcc-bugs


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

Joost VandeVondele <Joost.VandeVondele at mat dot ethz.ch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Joost.VandeVondele at mat
                   |                            |dot ethz.ch
            Summary|ICE in check_sym_interfaces |[4.7/4.8/4.9 Regression]
                   |                            |ICE in check_sym_interfaces

--- Comment #1 from Joost VandeVondele <Joost.VandeVondele at mat dot ethz.ch> 2013-03-21 12:32:40 UTC ---
Appears to work fine with 4.6.3, goes wrong with 4.7.2


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
  2013-03-21 12:32 ` [Bug fortran/56674] [4.7/4.8/4.9 Regression] " Joost.VandeVondele at mat dot ethz.ch
@ 2013-03-21 12:46 ` rguenth at gcc dot gnu.org
  2013-03-21 14:46 ` burnus at gcc dot gnu.org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-03-21 12:46 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.7.3


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
  2013-03-21 12:32 ` [Bug fortran/56674] [4.7/4.8/4.9 Regression] " Joost.VandeVondele at mat dot ethz.ch
  2013-03-21 12:46 ` rguenth at gcc dot gnu.org
@ 2013-03-21 14:46 ` burnus at gcc dot gnu.org
  2013-04-03 10:14 ` rguenth at gcc dot gnu.org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: burnus at gcc dot gnu.org @ 2013-03-21 14:46 UTC (permalink / raw)
  To: gcc-bugs


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

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> 2013-03-21 14:46:48 UTC ---
Some debugging seems to indicate that it is due to the implementation of the
constructor, i.e. DT name == generic name.

The problem is that for
  iface->sym
"sym" contains undefined memory (presumably created and later freed), which
fails for iface->sym->name.

"iface" is:
resolve.c:      for (iface = sym->generic; iface; iface = iface->next)
and sym->name is "realspace_grid_input_type".

Thus, it seems as if the DT has been deleted but not the entry in the generic
list.


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (2 preceding siblings ...)
  2013-03-21 14:46 ` burnus at gcc dot gnu.org
@ 2013-04-03 10:14 ` rguenth at gcc dot gnu.org
  2013-04-11  7:59 ` rguenth at gcc dot gnu.org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-04-03 10:14 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (3 preceding siblings ...)
  2013-04-03 10:14 ` rguenth at gcc dot gnu.org
@ 2013-04-11  7:59 ` rguenth at gcc dot gnu.org
  2013-06-20 18:13 ` dominiq at lps dot ens.fr
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-04-11  7:59 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.7.3                       |4.7.4

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> 2013-04-11 07:59:12 UTC ---
GCC 4.7.3 is being released, adjusting target milestone.


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (4 preceding siblings ...)
  2013-04-11  7:59 ` rguenth at gcc dot gnu.org
@ 2013-06-20 18:13 ` dominiq at lps dot ens.fr
  2013-12-26 12:58 ` dominiq at lps dot ens.fr
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: dominiq at lps dot ens.fr @ 2013-06-20 18:13 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-06-20
     Ever confirmed|0                           |1

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Still present at revision 200247.


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (5 preceding siblings ...)
  2013-06-20 18:13 ` dominiq at lps dot ens.fr
@ 2013-12-26 12:58 ` dominiq at lps dot ens.fr
  2014-01-06 22:27 ` dominiq at lps dot ens.fr
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: dominiq at lps dot ens.fr @ 2013-12-26 12:58 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
This appeared at r181425.


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

* [Bug fortran/56674] [4.7/4.8/4.9 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (6 preceding siblings ...)
  2013-12-26 12:58 ` dominiq at lps dot ens.fr
@ 2014-01-06 22:27 ` dominiq at lps dot ens.fr
  2014-06-12 13:49 ` [Bug fortran/56674] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: dominiq at lps dot ens.fr @ 2014-01-06 22:27 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> This appeared at r181425.

This revision also gives pr57129.


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

* [Bug fortran/56674] [4.7/4.8/4.9/4.10 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (7 preceding siblings ...)
  2014-01-06 22:27 ` dominiq at lps dot ens.fr
@ 2014-06-12 13:49 ` rguenth at gcc dot gnu.org
  2014-12-19 13:41 ` [Bug fortran/56674] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-12 13:49 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.7.4                       |4.8.4

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
The 4.7 branch is being closed, moving target milestone to 4.8.4.


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

* [Bug fortran/56674] [4.8/4.9/5 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (8 preceding siblings ...)
  2014-06-12 13:49 ` [Bug fortran/56674] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:41 ` jakub at gcc dot gnu.org
  2015-04-10 11:30 ` mikael at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:41 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.4                       |4.8.5

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.4 has been released.


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

* [Bug fortran/56674] [4.8/4.9/5 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (9 preceding siblings ...)
  2014-12-19 13:41 ` [Bug fortran/56674] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-04-10 11:30 ` mikael at gcc dot gnu.org
  2015-04-14  9:18 ` [Bug fortran/56674] [4.8/4.9/5/6 " mikael at gcc dot gnu.org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: mikael at gcc dot gnu.org @ 2015-04-10 11:30 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #10 from Mikael Morin <mikael at gcc dot gnu.org> ---
Author: mikael
Date: Fri Apr 10 11:29:53 2015
New Revision: 221972

URL: https://gcc.gnu.org/viewcvs?rev=221972&root=gcc&view=rev
Log:
    PR fortran/56674
    PR fortran/58813
    PR fortran/59016
    PR fortran/59024
fortran/
    * symbol.c (save_symbol_data, gfc_save_symbol_data): Rename the
    former to the latter and make it non-static.  Update callers.
    * gfortran.h (gfc_save_symbol_data): New prototype.
    * decl.c (gfc_match_decl_type_spec): Call 'gfc_save_symbol_data'
    before modifying symbols 'sym' and 'dt_sym'.
testsuite/
    * gfortran.dg/used_types_27.f90: New.


Added:
    trunk/gcc/testsuite/gfortran.dg/used_types_27.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/decl.c
    trunk/gcc/fortran/gfortran.h
    trunk/gcc/fortran/symbol.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug fortran/56674] [4.8/4.9/5/6 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (10 preceding siblings ...)
  2015-04-10 11:30 ` mikael at gcc dot gnu.org
@ 2015-04-14  9:18 ` mikael at gcc dot gnu.org
  2015-04-14 12:24 ` mikael at gcc dot gnu.org
  2015-04-14 12:42 ` mikael at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: mikael at gcc dot gnu.org @ 2015-04-14  9:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from Mikael Morin <mikael at gcc dot gnu.org> ---
Author: mikael
Date: Tue Apr 14 09:18:15 2015
New Revision: 222078

URL: https://gcc.gnu.org/viewcvs?rev=222078&root=gcc&view=rev
Log:
    PR fortran/56674
    PR fortran/58813
    PR fortran/59016
    PR fortran/59024
fortran/
    * symbol.c (save_symbol_data, gfc_save_symbol_data): Rename the
    former to the latter and make it non-static.  Update callers.
    * gfortran.h (gfc_save_symbol_data): New prototype.
    * decl.c (gfc_match_decl_type_spec): Call 'gfc_save_symbol_data'
    before modifying symbols 'sym' and 'dt_sym'.
testsuite/
    * gfortran.dg/used_types_27.f90: New.


Added:
    branches/gcc-4_9-branch/gcc/testsuite/gfortran.dg/used_types_27.f90
Modified:
    branches/gcc-4_9-branch/gcc/fortran/ChangeLog
    branches/gcc-4_9-branch/gcc/fortran/decl.c
    branches/gcc-4_9-branch/gcc/fortran/gfortran.h
    branches/gcc-4_9-branch/gcc/fortran/symbol.c
    branches/gcc-4_9-branch/gcc/testsuite/ChangeLog


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

* [Bug fortran/56674] [4.8/4.9/5/6 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (11 preceding siblings ...)
  2015-04-14  9:18 ` [Bug fortran/56674] [4.8/4.9/5/6 " mikael at gcc dot gnu.org
@ 2015-04-14 12:24 ` mikael at gcc dot gnu.org
  2015-04-14 12:42 ` mikael at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: mikael at gcc dot gnu.org @ 2015-04-14 12:24 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #12 from Mikael Morin <mikael at gcc dot gnu.org> ---
Author: mikael
Date: Tue Apr 14 12:23:30 2015
New Revision: 222086

URL: https://gcc.gnu.org/viewcvs?rev=222086&root=gcc&view=rev
Log:
    PR fortran/56674
    PR fortran/58813
    PR fortran/59016
    PR fortran/59024
fortran/
    * symbol.c (save_symbol_data, gfc_save_symbol_data): Rename the
    former to the latter and make it non-static.  Update callers.
    * gfortran.h (gfc_save_symbol_data): New prototype.
    * decl.c (gfc_match_decl_type_spec): Call 'gfc_save_symbol_data'
    before modifying symbols 'sym' and 'dt_sym'.
testsuite/
    * gfortran.dg/used_types_27.f90: New.


Added:
    branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/used_types_27.f90
Modified:
    branches/gcc-4_8-branch/gcc/fortran/ChangeLog
    branches/gcc-4_8-branch/gcc/fortran/decl.c
    branches/gcc-4_8-branch/gcc/fortran/gfortran.h
    branches/gcc-4_8-branch/gcc/fortran/symbol.c
    branches/gcc-4_8-branch/gcc/testsuite/ChangeLog


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

* [Bug fortran/56674] [4.8/4.9/5/6 Regression] ICE in check_sym_interfaces
  2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
                   ` (12 preceding siblings ...)
  2015-04-14 12:24 ` mikael at gcc dot gnu.org
@ 2015-04-14 12:42 ` mikael at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: mikael at gcc dot gnu.org @ 2015-04-14 12:42 UTC (permalink / raw)
  To: gcc-bugs

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

Mikael Morin <mikael at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |mikael at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #13 from Mikael Morin <mikael at gcc dot gnu.org> ---
Dup.

*** This bug has been marked as a duplicate of bug 59016 ***


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

end of thread, other threads:[~2015-04-14 12:42 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-21 12:26 [Bug fortran/56674] New: ICE in check_sym_interfaces Joost.VandeVondele at mat dot ethz.ch
2013-03-21 12:32 ` [Bug fortran/56674] [4.7/4.8/4.9 Regression] " Joost.VandeVondele at mat dot ethz.ch
2013-03-21 12:46 ` rguenth at gcc dot gnu.org
2013-03-21 14:46 ` burnus at gcc dot gnu.org
2013-04-03 10:14 ` rguenth at gcc dot gnu.org
2013-04-11  7:59 ` rguenth at gcc dot gnu.org
2013-06-20 18:13 ` dominiq at lps dot ens.fr
2013-12-26 12:58 ` dominiq at lps dot ens.fr
2014-01-06 22:27 ` dominiq at lps dot ens.fr
2014-06-12 13:49 ` [Bug fortran/56674] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:41 ` [Bug fortran/56674] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-04-10 11:30 ` mikael at gcc dot gnu.org
2015-04-14  9:18 ` [Bug fortran/56674] [4.8/4.9/5/6 " mikael at gcc dot gnu.org
2015-04-14 12:24 ` mikael at gcc dot gnu.org
2015-04-14 12:42 ` mikael 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).