From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4489 invoked by alias); 27 Nov 2014 17:17: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 4431 invoked by uid 48); 27 Nov 2014 17:17:01 -0000 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/63573] [5 Regression] libgo: ICE building libgo on powerpc-linux-gnu Date: Thu, 27 Nov 2014 17:17:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: marxin 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: 2014-11/txt/msg03263.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D63573 --- Comment #28 from Jonathan Wakely --- (In reply to Martin Li=C5=A1ka from comment #25) > There's updated version of Honza's patch that fixes testcase instroduced = in > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D63573#c23: >=20 > diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c > index d4864ae..0036f15 100644 > --- a/gcc/tree-inline.c > +++ b/gcc/tree-inline.c > @@ -1617,8 +1617,12 @@ remap_gimple_stmt (gimple stmt, copy_body_data *id) >=20=20 > /* Clear flags that need revisiting. */ > if (gcall *call_stmt =3D dyn_cast (copy)) > - if (gimple_call_tail_p (call_stmt)) > - gimple_call_set_tail (call_stmt, false); > + { > + if (gimple_call_tail_p (call_stmt)) > + gimple_call_set_tail (call_stmt, false); > + if (gimple_call_from_thunk_p (call_stmt)) > + gimple_call_set_from_thunk (call_stmt, false); > + } >=20=20 > /* Remap the region numbers for __builtin_eh_{pointer,filter}, > RESX and EH_DISPATCH. */ This fixes the ICE I'm seeing >>From gcc-bugs-return-468792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Nov 27 18:16:46 2014 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 18675 invoked by alias); 27 Nov 2014 18:16:45 -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 18637 invoked by uid 48); 27 Nov 2014 18:16:40 -0000 From: "daniel.kruegler at googlemail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/64077] dynamic_cast incorrectly rejected for private base Date: Thu, 27 Nov 2014 18:16:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: daniel.kruegler at googlemail 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: 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-11/txt/msg03264.txt.bz2 Content-length: 640 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D64077 --- Comment #3 from Daniel Kr=C3=BCgler --- (In reply to Andrew Dixie from comment #2) > In p5, is "inaccessible" meant to include friendship relationships granted > by the current scope or instead use the explicit public base rules spelt = out > in p8? p5 discusses the static scenario, while p8 discusses the runtime check. > The second part of the patch was implementing the latter, but I now also > think this is invalid. I'm not sure whether I understand your argument. Could you construct a code example that makes your point clearer? >>From gcc-bugs-return-468793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Nov 27 18:18:29 2014 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 19802 invoked by alias); 27 Nov 2014 18:18:29 -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 19769 invoked by uid 48); 27 Nov 2014 18:18:25 -0000 From: "d.g.gorbachev at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/64075] [5 Regression] ICE: in bp_pack_value, at data-streamer.h:106 Date: Thu, 27 Nov 2014 18:18:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: ice-on-valid-code, lto X-Bugzilla-Severity: normal X-Bugzilla-Who: d.g.gorbachev at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution 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: 2014-11/txt/msg03265.txt.bz2 Content-length: 472 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64075 Dmitry Gorbachev changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #8 from Dmitry Gorbachev --- Well, then resolving the bug as fixed.