aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2024-05-15 13:13:48 +0200
committerRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2024-05-15 13:13:48 +0200
commita0e9fde8766a5b5a28a76c3a6fb0276efa47cd6d (patch)
tree4ddc0bf2c1bb2191a3c07c05e692e829b728ccd9 /gcc
parentad22c607f3e17f2c6ca45699c1d88adaa618c23c (diff)
downloadgcc-a0e9fde8766a5b5a28a76c3a6fb0276efa47cd6d.zip
gcc-a0e9fde8766a5b5a28a76c3a6fb0276efa47cd6d.tar.gz
gcc-a0e9fde8766a5b5a28a76c3a6fb0276efa47cd6d.tar.bz2
testsuite: i386: Fix g++.target/i386/pr97054.C on Solaris
g++.target/i386/pr97054.C currently FAILs on 64-bit Solaris/x86: FAIL: g++.target/i386/pr97054.C -std=gnu++14 (test for excess errors) UNRESOLVED: g++.target/i386/pr97054.C -std=gnu++14 compilation failed to produce executable FAIL: g++.target/i386/pr97054.C -std=gnu++17 (test for excess errors) UNRESOLVED: g++.target/i386/pr97054.C -std=gnu++17 compilation failed to produce executable FAIL: g++.target/i386/pr97054.C -std=gnu++2a (test for excess errors) UNRESOLVED: g++.target/i386/pr97054.C -std=gnu++2a compilation failed to produce executable FAIL: g++.target/i386/pr97054.C -std=gnu++98 (test for excess errors) UNRESOLVED: g++.target/i386/pr97054.C -std=gnu++98 compilation failed to produce executable Excess errors: /vol/gcc/src/hg/master/local/gcc/testsuite/g++.target/i386/pr97054.C:49:20: error: frame pointer required, but reserved Since Solaris/x86 defaults to -fno-omit-frame-pointer, this patch explicitly builds with -fomit-frame-pointer as is the default on other x86 targets. Tested on i386-pc-solaris2.11 (32 and 64-bit) and x86_64-pc-linux-gnu. 2024-05-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> gcc/testsuite: * g++.target/i386/pr97054.C (dg-options): Add -fomit-frame-pointer.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.target/i386/pr97054.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.target/i386/pr97054.C b/gcc/testsuite/g++.target/i386/pr97054.C
index d0693af..b18ef2e 100644
--- a/gcc/testsuite/g++.target/i386/pr97054.C
+++ b/gcc/testsuite/g++.target/i386/pr97054.C
@@ -1,6 +1,6 @@
// { dg-do run { target { ! ia32 } } }
// { dg-require-effective-target fstack_protector }
-// { dg-options "-O2 -fno-strict-aliasing -msse4.2 -mfpmath=sse -fPIC -fstack-protector-strong -O2" }
+// { dg-options "-O2 -fno-strict-aliasing -msse4.2 -mfpmath=sse -fPIC -fstack-protector-strong -O2 -fomit-frame-pointer" }
struct p2_icode *ipc;
register int pars asm("r13");