From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9AF043858D33; Thu, 27 Apr 2023 16:05:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9AF043858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682611528; bh=mCFdM3znKXmrsJst/Ces0qPAPyLPWLxAR+PXcFj1oAs=; h=From:To:Subject:Date:In-Reply-To:References:From; b=qaH/o0eXbMNIt0F57RLPC+YvXlhWlBBDLH03vAeJ9VMY7Ze2LSqe3hmSdyZQNMnpw 1pNNHCaJ5rHVfMaRwz6cUchrzMfboofkFt0ncfkwoo2Jz8KlbyyZGXjqp1vYuhFZoT zKW2qUH3prU8a7J7ktKVrCarbirwU5d9a4VMbrh8= From: "bergner at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/105325] power10: Error: operand out of range Date: Thu, 27 Apr 2023 16:05:27 +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: 11.2.0 X-Bugzilla-Keywords: assemble-failure X-Bugzilla-Severity: normal X-Bugzilla-Who: bergner at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: meissner at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.2 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_file_loc 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=3D105325 Peter Bergner changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://gcc.gnu.org/piperma | |il/gcc-patches/2023-April/6 | |16805.html --- Comment #16 from Peter Bergner --- Another test case from Nick's dup bugzilla (PR108239): --- test.c --- // powerpc64le-linux-gnu-gcc -O2 -mcpu=3Dpower10 -mno-pcrel -c test.c #include static inline uint32_t readl(uint32_t *addr) { uint32_t ret; __asm__ __volatile__("lwz %0,%1" : "=3Dr" (ret) : "m" (*addr)); return ret; } int test(void *addr) { return readl(addr + 0x8024); }=