From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id B60D23858404; Thu, 6 Jul 2023 04:53:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B60D23858404 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1688619217; bh=a8KRVc7ZVl16wp0aEA/Z+nyE7wo04+ya3ArTuJiHo/c=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Owsa2eFn9iVkQZNyBfLLNrylNQNRKRx+A1wEqMM3VP5KJRmKp4s2faWMHZODNtsLP G2HTWgufklfHfXMYNHF1h3rBslMzcVjiISgeOU4x3S/RXiYdAEqe7/cikDV1zwxiTG qYtP7HTIhecK3IRbyrwmVUAiAdMOMIpAfeokSdIk= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/106907] gcc/config/rs6000/rs6000.cc:23155: strange expression ? Date: Thu, 06 Jul 2023 04:53:37 +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: 12.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=3D106907 --- Comment #9 from CVS Commits --- The master branch has been updated by jeevitha : https://gcc.gnu.org/g:1669fad496ed6cc7ddea142e12af15e0b9f7f3b4 commit r14-2336-g1669fad496ed6cc7ddea142e12af15e0b9f7f3b4 Author: Jeevitha Palanisamy Date: Wed Jul 5 23:46:15 2023 -0500 rs6000: Remove redundant initialization [PR106907] PR106907 has few warnings spotted from cppcheck. In that addressing redundant initialization issue. Here the initialized value of 'new_addr' was overwritten before it was read. Updated the source by removing the unnecessary initialization of 'new_addr'. 2023-07-06 Jeevitha Palanisamy gcc/ PR target/106907 * config/rs6000/rs6000.cc (rs6000_expand_vector_extract): Remove redundant initialization of new_addr.=