From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 88FE93858427; Wed, 29 Nov 2023 00:52:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 88FE93858427 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1701219169; bh=vs0Tkf3YBNszgOQ7+fL+2BzaaPZL/m6GVoDgWVGCSWI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=p9PoncEoMNrNG/Zv28/jwJtYYfQmboR8ETBlu1PfACRJFyeir82grA0Hot+tSUtSL cbw9AzBaVKDBElcOWFyChbochlDhJTVBACP5evBzNdPp8Jh0lvNrG0Fl9bq1zeqWz0 XgWtNEEJ0W2oJSl+9r1ojkHvaZT6kmeJIOwai8zw= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/112729] gcc.target/i386/apx-interrupt-1.c etc. FAIL Date: Wed, 29 Nov 2023 00:52:49 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: testsuite-fail 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: 14.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=3D112729 --- Comment #8 from GCC Commits --- The master branch has been updated by Hongyu Wang : https://gcc.gnu.org/g:99fa0bfd63d97825c4221dcd3123940f1d0e6291 commit r14-5943-g99fa0bfd63d97825c4221dcd3123940f1d0e6291 Author: Hongyu Wang Date: Tue Nov 28 11:24:01 2023 +0800 [i386] Fix push2pop2 test fail on non-linux target [PR112729] On linux x86-64, -fomit-frame-pointer was by default enabled so the push2pop2 tests cfi scans are based on it. On other target with -fno-omit-frame-pointer the cfi scan will be wrong as the frame pointer is pushed at first. Add -fomit-frame-pointer to these tests that related to cfi scan. gcc/testsuite/ChangeLog: PR target/112729 * gcc.target/i386/apx-interrupt-1.c: Add -fomit-frame-pointer. * gcc.target/i386/apx-push2pop2-1.c: Likewise. * gcc.target/i386/apx-push2pop2_force_drap-1.c: Likewise.=