From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 572A5384DE41; Tue, 11 Jul 2023 13:57:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 572A5384DE41 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1689083846; bh=1KJqcJcSJkZ5/K4cxp9ifh1yetigeZB1Wq5e12nhCjM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=AH5MvnO9G/RBtVxLWGZyXjJWNl1y4IT2/7K12BzjT5AeNRQvbmFJpkhwIUudpFXgP KZwbdHNpBGCgVJYNbIWU1bYAeW2d4hdNr56mSxJazH91y3oFEa28fz869V8W+wfhpv EGM8K/JY9lwuv4gwDON4ZeKBnhIIdM1Kb0mbYhnE= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/110170] Sub-optimal conditional jumps in conditional-swap with floating point Date: Tue, 11 Jul 2023 13:57:26 +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: 14.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW 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=3D110170 --- Comment #15 from CVS Commits --- The master branch has been updated by hongtao Liu : https://gcc.gnu.org/g:e5c64efb1367459dbc2d2e29856f23908cb503c1 commit r14-2432-ge5c64efb1367459dbc2d2e29856f23908cb503c1 Author: liuhongt Date: Tue Jul 11 21:21:03 2023 +0800 Fix typo in the testcase. Antony Polukhin 2023-07-11 09:51:58 UTC There's a typo at https://gcc.gnu.org/git/?p=3Dgcc.git;a=3Dblob;f=3Dgcc/testsuite/g%2B%2B.tar= get/i386/pr110170.C;h=3De638b12a5ee2264ecef77acca86432a9f24b103b;hb=3Dd41a5= 7c46df6f8f7dae0c0a8b349e734806a837b#l87 It should be `|| !test3() || !test3r()` rather than `|| !test3() || !test4r()` gcc/testsuite/ChangeLog: PR target/110170 * g++.target/i386/pr110170.C: Fix typo.=