public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate
@ 2013-04-07 20:46 doko at gcc dot gnu.org
  2013-04-07 20:52 ` [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered doko at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: doko at gcc dot gnu.org @ 2013-04-07 20:46 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 56869
           Summary: [4.7 Regression] ICE (segfault) with the 4.7.3 release
                    candidate
    Classification: Unclassified
           Product: gcc
           Version: 4.7.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: doko@gcc.gnu.org


works with 4.6 and 4.8, fails with the 4.7 branch

$ g++ -std=c++0x foo.cc 
'
Internal compiler error: Error reporting routines re-entered.
Please submit a full bug report,
with preprocessed source if appropriate.

#include <memory>

namespace
{
struct Foo
{
    Foo(int) {}
};
}

int main(int, char**)
{
    auto foo = std::make_shared<Foo>();
    return 0;
}


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

* [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
@ 2013-04-07 20:52 ` doko at gcc dot gnu.org
  2013-04-08 11:14 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: doko at gcc dot gnu.org @ 2013-04-07 20:52 UTC (permalink / raw)
  To: gcc-bugs


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

Matthias Klose <doko at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.7.2

--- Comment #1 from Matthias Klose <doko at gcc dot gnu.org> 2013-04-07 20:52:21 UTC ---
works with 4.7.2, fails with 4.7.3


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

* [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
  2013-04-07 20:52 ` [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered doko at gcc dot gnu.org
@ 2013-04-08 11:14 ` rguenth at gcc dot gnu.org
  2013-04-08 11:19 ` doko at gcc dot gnu.org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-04-08 11:14 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2013-04-08
   Target Milestone|---                         |4.7.3
     Ever Confirmed|0                           |1

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> 2013-04-08 11:14:25 UTC ---
works for me on the 4.7 branch (x86_64-linux) with preprocessed source from
using 4.7.2.

So it might be triggered by a libstdc++ change?

Can you attach preprocessed source?


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

* [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
  2013-04-07 20:52 ` [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered doko at gcc dot gnu.org
  2013-04-08 11:14 ` rguenth at gcc dot gnu.org
@ 2013-04-08 11:19 ` doko at gcc dot gnu.org
  2013-04-08 11:20 ` doko at gcc dot gnu.org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: doko at gcc dot gnu.org @ 2013-04-08 11:19 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #3 from Matthias Klose <doko at gcc dot gnu.org> 2013-04-08 11:19:50 UTC ---
Created attachment 29822
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29822
preprocessed source


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

* [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2013-04-08 11:19 ` doko at gcc dot gnu.org
@ 2013-04-08 11:20 ` doko at gcc dot gnu.org
  2013-04-08 15:14 ` [Bug c++/56869] [4.6/4.7 " rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: doko at gcc dot gnu.org @ 2013-04-08 11:20 UTC (permalink / raw)
  To: gcc-bugs


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

Matthias Klose <doko at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |UNCONFIRMED
     Ever Confirmed|1                           |0


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

* [Bug c++/56869] [4.6/4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2013-04-08 11:20 ` doko at gcc dot gnu.org
@ 2013-04-08 15:14 ` rguenth at gcc dot gnu.org
  2013-04-12 15:18 ` [Bug c++/56869] [4.7 " jakub at gcc dot gnu.org
  2013-11-18 16:51 ` paolo.carlini at oracle dot com
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2013-04-08 15:14 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |error-recovery
             Status|UNCONFIRMED                 |NEW
      Known to work|4.6.3, 4.7.2                |4.5.2
   Target Milestone|4.7.3                       |4.6.4
            Summary|[4.7 Regression] ICE        |[4.6/4.7 Regression] ICE
                   |(segfault) Error reporting  |(segfault) Error reporting
                   |routines re-entered         |routines re-entered
     Ever Confirmed|0                           |1
      Known to fail|                            |4.6.0, 4.6.3, 4.7.0

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> 2013-04-08 15:13:57 UTC ---
Also fails with GCC 4.7.0  GCC 4.6 ICEs for me with

in dependent_type_p, at cp/pt.c:18136
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

(confused by earlier errors)

4.5 seems to "work".

Factoring in libstdc++ changes the point of the regression.


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

* [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2013-04-08 15:14 ` [Bug c++/56869] [4.6/4.7 " rguenth at gcc dot gnu.org
@ 2013-04-12 15:18 ` jakub at gcc dot gnu.org
  2013-11-18 16:51 ` paolo.carlini at oracle dot com
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 15:18 UTC (permalink / raw)
  To: gcc-bugs


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

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

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

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-12 15:17:13 UTC ---
GCC 4.6.4 has been released and the branch has been closed.


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

* [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered
  2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2013-04-12 15:18 ` [Bug c++/56869] [4.7 " jakub at gcc dot gnu.org
@ 2013-11-18 16:51 ` paolo.carlini at oracle dot com
  6 siblings, 0 replies; 8+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-11-18 16:51 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to work|                            |4.9.0
         Resolution|---                         |WORKSFORME

--- Comment #6 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Let's close this.


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

end of thread, other threads:[~2013-11-18 16:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-07 20:46 [Bug c++/56869] New: [4.7 Regression] ICE (segfault) with the 4.7.3 release candidate doko at gcc dot gnu.org
2013-04-07 20:52 ` [Bug c++/56869] [4.7 Regression] ICE (segfault) Error reporting routines re-entered doko at gcc dot gnu.org
2013-04-08 11:14 ` rguenth at gcc dot gnu.org
2013-04-08 11:19 ` doko at gcc dot gnu.org
2013-04-08 11:20 ` doko at gcc dot gnu.org
2013-04-08 15:14 ` [Bug c++/56869] [4.6/4.7 " rguenth at gcc dot gnu.org
2013-04-12 15:18 ` [Bug c++/56869] [4.7 " jakub at gcc dot gnu.org
2013-11-18 16:51 ` paolo.carlini at oracle dot com

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).