From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29925 invoked by alias); 27 Apr 2015 17:59:05 -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 29871 invoked by uid 48); 27 Apr 2015 17:59:00 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/65908] [5/6 Regression] ICE: in expand_thunk, at cgraphunit.c:1700 Date: Mon, 27 Apr 2015 17:59:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 5.1.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: 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_status cf_reconfirmed_on cc component short_desc everconfirmed 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: 2015-04/txt/msg02324.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D65908 Markus Trippelsdorf changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2015-04-27 CC| |trippels at gcc dot gnu.org Component|c++ |ipa Summary|internal compiler error: in |[5/6 Regression] ICE: in |expand_thunk |expand_thunk, at | |cgraphunit.c:1700 Ever confirmed|0 |1 --- Comment #2 from Markus Trippelsdorf --- markus@x4 tmp % cat cvc3_compat.ii class A { A (A &); }; class B { const A &m_fn1 () const; }; class C { A m_fn2 () const; }; A C::m_fn2 () const { throw 0; } const A & B::m_fn1 () const { throw 0; } markus@x4 tmp % g++ -O2 -fPIC -c cvc3_compat.ii cvc3_compat.ii: In member function =E2=80=98A C::m_fn2() const=E2=80=99: cvc3_compat.ii:22:1: internal compiler error: in expand_thunk, at cgraphunit.c:1700 >>From gcc-bugs-return-484773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Apr 27 18:16:23 2015 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 76529 invoked by alias); 27 Apr 2015 18:16:23 -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 76345 invoked by uid 48); 27 Apr 2015 18:16:19 -0000 From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/48852] Invalid spaces in list-directed output of complex constants Date: Mon, 27 Apr 2015 18:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org 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: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-04/txt/msg02325.txt.bz2 Content-length: 580 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48852 --- Comment #14 from Jerry DeLisle --- I have decided that to do this right I need to revamp how write_float.def and associated functions are organized. We have discussed doing this quite a while ago, so now is the time. I see it like this: - Create a working buffer (currently buried down under, need it brought up) - Get the digits based on the KIND etc (DTOA FTOA etc) - Format the digits (right now mostly in output_float) - Send the formatted digits out (split this out of output float)