https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112729
--- Comment #8 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Hongyu Wang <hong...@gcc.gnu.org>: https://gcc.gnu.org/g:99fa0bfd63d97825c4221dcd3123940f1d0e6291 commit r14-5943-g99fa0bfd63d97825c4221dcd3123940f1d0e6291 Author: Hongyu Wang <hongyu.w...@intel.com> 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.