From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25339 invoked by alias); 7 Aug 2014 12:13:03 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 25271 invoked by uid 48); 7 Aug 2014 12:12:54 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/61871] FAIL: regexp from libgo testsuite on non-split stack targets Date: Thu, 07 Aug 2014 12:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 4.10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ubizjak at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-08/txt/msg00460.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D61871 --- Comment #3 from Uro=C5=A1 Bizjak --- The size in frame #6 is questionable: #6 0x00000200005a4b30 in __go_new (size=3D2199032605516) at /home/uros/gcc-svn/trunk/libgo/runtime/go-new.c:15 (gdb) f 6 #6 0x00000200005a4b30 in __go_new (size=3D2199032605516) at /home/uros/gcc-svn/trunk/libgo/runtime/go-new.c:15 15 return runtime_mallocgc (size, 0, 0); (gdb) p/x size $10 =3D 0x200008eab4c >>From gcc-bugs-return-457964-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 07 12:53:18 2014 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 25445 invoked by alias); 7 Aug 2014 12:53:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 25428 invoked by uid 48); 7 Aug 2014 12:53:13 -0000 From: "radoslaw.chmielarz at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/62050] New: Internal compiler error: Error reporting routines re-entered with std::make_shared on abstract class Date: Thu, 07 Aug 2014 12:53:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.7.4 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: radoslaw.chmielarz at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-08/txt/msg00461.txt.bz2 Content-length: 1435 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62050 Bug ID: 62050 Summary: Internal compiler error: Error reporting routines re-entered with std::make_shared on abstract class Product: gcc Version: 4.7.4 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: radoslaw.chmielarz at gmail dot com Created attachment 33268 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33268&action=edit Preprocessed source file Hi all, An internal compiler error is occuring when trying to create a shared_ptr using make_shared on an abstract class. The following error message was displayed: Internal compiler error: Error reporting routines re-entered. Please submit a full bug report, with preprocessed source if appropriate. See for instructions. Preprocessed source stored into /tmp/cc6gFr0r.out file, please attach this to your bugreport. The code for bug reproduction is the following: ----------------------- #include class AbstractClass { virtual ~AbstractClass() {} virtual void f() = 0; }; class MakeSharedInternalCompilerError { std::shared_ptr m_member = std::make_shared(); }; ------------------------ The preprocessed source file is added as an attachment. Cheers, Radek