From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14612 invoked by alias); 12 Jan 2015 11:16:28 -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 14546 invoked by uid 48); 12 Jan 2015 11:16:22 -0000 From: "ubizjak at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/64370] [5 Regression] sreal.c:125:23: error: 'exp2' was not declared in this scope Date: Mon, 12 Jan 2015 11:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 5.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: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.0 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: 2015-01/txt/msg00780.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D64370 --- Comment #7 from Uro=C5=A1 Bizjak --- (In reply to dave.anglin from comment #5) >=20 > I have read that there are problems with overflow detection on alpha.=20= =20 > So, is that the issue? The issue us that -inf will ICE with FP exception on alpha. I don't think -= inf (which is otherwise produced on other targets) is valid result, and using scalbln avoids it. >>From gcc-bugs-return-472787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Jan 12 11:22:59 2015 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 17224 invoked by alias); 12 Jan 2015 11:22:58 -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 17155 invoked by uid 48); 12 Jan 2015 11:22:51 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/64565] New: [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664 Date: Mon, 12 Jan 2015 11:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org 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 cc 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: 2015-01/txt/msg00781.txt.bz2 Content-length: 2283 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64565 Bug ID: 64565 Summary: [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664 Product: gcc Version: 5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: ipa Assignee: unassigned at gcc dot gnu.org Reporter: trippels at gcc dot gnu.org CC: hubicka at gcc dot gnu.org Since r219452 I get: trippels@gcc2-power8 places % cat nsNavHistoryResult.ii typedef enum { NS_OK } nsresult; struct A { static int kIID; }; class B { }; class C { public: C (B p1) { m_fn1 (p1, A::kIID); } void m_fn1 (B, int); }; class D; class F { public: F (int); }; class G { public: D *operator[](int); }; class H { virtual nsresult m_fn2 (); public: void m_fn3 (); }; class J : H { G mQueries; int mLiveUpdate; nsresult m_fn2 (); }; class D { public: nsresult m_fn4 (int); void m_fn5 (int); }; class I { public: static I * m_fn6 () { B __trans_tmp_3; if (!gHistoryService) C serv = __trans_tmp_3; } void m_fn7 (); static I *gHistoryService; }; D *Refresh___trans_tmp_2; D Refresh___trans_tmp_6, Refresh___trans_tmp_5; int Refresh_hasDomain; nsresult J::m_fn2 () { m_fn3 (); I history = *I::m_fn6 (); switch (mLiveUpdate) { case 1: { mQueries[0]; F query = 0; if (Refresh_hasDomain) return NS_OK; } case 0: { Refresh___trans_tmp_2 = mQueries[0]; F query = Refresh___trans_tmp_5.m_fn4 (0); history.m_fn7 (); Refresh___trans_tmp_6.m_fn5 (0); } case 3: m_fn2 (); } } trippels@gcc2-power8 places % c++ -c -O2 nsNavHistoryResult.ii nsNavHistoryResult.ii:88:1: internal compiler error: in inline_small_functions, at ipa-inline.c:1664 } ^ 0x1103ce83 inline_small_functions ../../gcc/gcc/ipa-inline.c:1664 0x1103ce83 ipa_inline ../../gcc/gcc/ipa-inline.c:2163 0x1103ce83 execute ../../gcc/gcc/ipa-inline.c:2536 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions.