From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 585BC3858426; Wed, 1 Mar 2023 05:19:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 585BC3858426 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677647971; bh=Sh4Q5hipskuY5ToQeoM4dyo1Ek5OacwLWoCSMltagVE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=kGOgMBAYdJPbba7q0LD1hj/cCKQG1BqR+JrgO3kphwYeiPDqfAtbdZcyKM5bIZfU9 PRAhbRrKshdP8jj2T18zsR+1JeYcb++HiUGlUGDjhRMkoW/uhiG2+ewYY1NDjmbimE 9iGeRYJcvy4U5QJAC9mVw9rlsK4EOypon9LzCOsM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/108240] [13 Regression] Error message missing since r13-4894-gacc727cf02a144 (then make concealed ICE exposed) Date: Wed, 01 Mar 2023 05:19:28 +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: 13.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: linkw at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108240 --- Comment #14 from CVS Commits --- The master branch has been updated by Kewen Lin : https://gcc.gnu.org/g:392f399ae0595e6b4433c18900cc67991fb140f4 commit r13-6383-g392f399ae0595e6b4433c18900cc67991fb140f4 Author: Kewen Lin Date: Tue Feb 28 23:17:48 2023 -0600 rs6000: Allow powerpc64 to be unset for implicit 64 bit [PR108240] Before r13-4894, if 64 bit is explicitly specified, option powerpc64 is explicitly enabled too; while if 64 bit is implicitly enabled and there is no explicit setting for option powerpc64, option powerpc64 is eventually enabled or not would rely on the default value of the used cpu. It's initially set as the setting for 64 bit, but later if the used cpu doesn't have powerpc64 supported by default, it gets cleared. To keep it consistent with before (also the relevant error/ warning messages), this patch is to allow that powerpc64 can be unset if 64 bit is enabled implicitly, and only stop it from being unset if 64 bit is enabled explicitly. Note that since the behaviors are different for implicit and explicit 64 bit, I failed to construct one solid test case since it becomes fragile once RUNTESTFLAGS specifying -m64 explicitly. PR target/108240 gcc/ChangeLog: * config/rs6000/rs6000.cc (rs6000_option_override_internal): Al= low implicit powerpc64 setting to be unset if 64 bit is enabled implicitly.=