From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id B8A9D384D149; Wed, 26 Oct 2022 03:23:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B8A9D384D149 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666754590; bh=oK3GUETsPpjQOd2mFX+HhTAJIVM//cCJ/r10ZNSKrUQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=eI+zHG+9ex7pXVZPvmOHhCxGC42nHi1aLcLXVcAj53hkaNaVj1CjDlgAwxZyXKf0O i4i2LFOYYjqV0cdaNNhjs0QS4OmQ0JkUab32eDEOefRyLp98n/HGvzmDayILREGmF1 v5JLUBx1jJnDeOLDY5YyBzbOamFhpE+Hx3448jrM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/106460] internal compiler error: output_operand: invalid expression as operand on -O1 Date: Wed, 26 Oct 2022 03:23:10 +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: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED 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: 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=3D106460 --- Comment #2 from CVS Commits --- The master branch has been updated by Jiu Fu Guo : https://gcc.gnu.org/g:978ec4825c2e5cb0ec03d857ea038440d566ff42 commit r13-3499-g978ec4825c2e5cb0ec03d857ea038440d566ff42 Author: Jiufu Guo Date: Tue Jul 19 18:30:58 2022 +0800 rs6000: cannot_force_const_mem for HIGH code rtx[PR106460] As the issue in PR106460, a rtx 'high:DI (symbol_ref:DI ("var_48")' is tried to store into constant pool and ICE occur. But actually, this rtx represents partial incomplete address and can not be put into a .rodata section. This patch updates rs6000_cannot_force_const_mem to return true for rtx= (s) with HIGH code, because these rtx(s) indicate part of address and are not ok= for constant pool. Below are some examples: (high:DI (const:DI (plus:DI (symbol_ref:DI ("xx") (const_int 12 [0xc]))= ))) (high:DI (symbol_ref:DI ("var_1")..))) PR target/106460 gcc/ChangeLog: * config/rs6000/rs6000.cc (rs6000_cannot_force_const_mem): Retu= rn true for HIGH code rtx. gcc/testsuite/ChangeLog: * gcc.target/powerpc/pr106460.c: New test.=