From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 64F3F39F2453; Fri, 17 Jul 2020 14:56:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 64F3F39F2453 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1594997773; bh=5+8OKyD5TJsadzkpX9tupo1IrCYCLC6IzTY5WoKW1kY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=o8rtiiSRQEmlldBHLyGD/Ym9OOuop8dqU/q1Lf9gPLiaEHVWiaEYpVkhHjE9RTEKy 1TTh/VVaEVN9S7zLkLdr8swnQka8wje+W3EJ737ieXBMLwmh4hGKpNCVULt8QXOWlU TkoqU0u5KYdPsa9/XQATTfpflQIy1ptR1IJKM3QQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/95952] [8 Regression] gcc-8 bootstrap failure on powerpc64-linux Date: Fri, 17 Jul 2020 14:56:13 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 8.4.1 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 8.5 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-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jul 2020 14:56:13 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95952 --- Comment #17 from CVS Commits --- The releases/gcc-8 branch has been updated by Will Schmidt : https://gcc.gnu.org/g:eba1113dbdf4b1d0d88755b2538327a1d09837b3 commit r8-10362-geba1113dbdf4b1d0d88755b2538327a1d09837b3 Author: Will Schmidt Date: Mon Jul 13 13:38:17 2020 -0500 [PATCH] rs6000 improve handling of built-in initialization [PR95952] Handle a scenario with a combination of old hardware, gcc-8 and binutils where gcc will ICE during it's selftest. This ICE was exposed when the builtin processing for better #pragma support was added, where we no longer skip builtin initialization based on the current mask. Per the bug report and assorted debug, the ICE occurrs when building the gcc-8 branch on a 970* based system with an old binutils. (gcc-9 a= nd newer is OK. binutils 2.34 is reported to allow success). The attached patch adds a clause to the builtin initialization to skip initialization of a builtin when the builtin mask is set but the icode value is zero. The subsequent assert check remains in place. 2020-07-13 Will Schmidt gcc/ChangeLog: PR target/95952 * config/rs6000/rs6000.c (altivec_init_builtins): Add continue clause to predicate builtin handling.=