From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 983D738582B4; Thu, 1 Feb 2024 11:49:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 983D738582B4 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706788172; bh=NOSbKqknvuTFtFY/6zUFRwIhvjuXAtj2fi6HClhtNT8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=FWkxrLpgq7MfhipynsvoqRNAmExUaWx+YDvDcnemAzcf+RV34B5n90M+a6gWs5CZV XUkAHho0cPlG+gdiLxW6F4xXBXWOPYISPD8rc+nKRbkFF4OXaEZq727LIKKLamxd95 ut7K32giamZ1+6vMMD4UcLjB0Gxn/DHtcCZLAhrY= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/70321] [10/11/12/13 Regression] STV generates less optimized code Date: Thu, 01 Feb 2024 11:49:29 +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: 6.0 X-Bugzilla-Keywords: deferred, missed-optimization, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 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=3D70321 --- Comment #27 from GCC Commits --- The master branch has been updated by Rainer Orth : https://gcc.gnu.org/g:ee7011eab67d8272f88e954bbab2e42bf6353441 commit r14-8690-gee7011eab67d8272f88e954bbab2e42bf6353441 Author: Rainer Orth Date: Thu Feb 1 12:48:57 2024 +0100 testsuite: i386: Fix gcc.target/i386/pr70321.c on 32-bit Solaris/x86 gcc.target/i386/pr70321.c FAILs on 32-bit Solaris/x86 since its introduction in commit 43201f2c2173894bf7c423cad6da1c21567e06c0 Author: Roger Sayle Date: Mon May 30 21:20:09 2022 +0100 PR target/70321: Split double word equality/inequality after STV on x86. FAIL: gcc.target/i386/pr70321.c scan-assembler-times mov 1 The failure happens because 32-bit Solaris/x86 defaults to -fno-omit-frame-pointer. Fixed by specifying -fomit-frame-pointer explicitly. Tested on i386-pc-solaris2.11 and i686-pc-linux-gnu. 2024-01-23 Rainer Orth gcc/testsuite: * gcc.target/i386/pr70321.c: Add -fomit-frame-pointer to dg-options.=