From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0D044385800C; Tue, 6 Jun 2023 11:22:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0D044385800C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686050548; bh=qm4MblsXWsLiUMp745xXtZ0ZqCECjee5m79/3fymPBA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Zz+VFnN8vwc9PGeEFi58I8UT9g7mptgobCwoU8m8BPy4oZy7My4cafjNSvqFqBKP7 osYQx1CfbKs6IEkaTWse1GbqVQEIBm8qmEcEsEgM7r0WE5drJEEwFzJxvlh69K1jZ+ NSSwTvKJoPrEgGPUm8FB98qW5yW5GFBie758AELM= 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: Tue, 06 Jun 2023 11:22: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: 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 #5 from CVS Commits --- The master branch has been updated by jeevitha : https://gcc.gnu.org/g:c4deccd44655c5d748dfed200a37f2b678c32fe8 commit r14-1567-gc4deccd44655c5d748dfed200a37f2b678c32fe8 Author: Jeevitha Palanisamy Date: Tue Jun 6 06:19:02 2023 -0500 rs6000: Remove duplicate expression [PR106907] PR106907 has few warnings spotted from cppcheck. In that addressing duplicate expression issue here. Here the same expression is used twice in logical AND(&&) operation which result in same result so removing that. 2023-06-06 Jeevitha Palanisamy gcc/ PR target/106907 * config/rs6000/rs6000.cc (vec_const_128bit_to_bytes): Remove duplicate expression.=