public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-6223] Fix c-c++-common/fhardened-[12].c test fails on hppa
@ 2023-12-06 15:39 John David Anglin
  0 siblings, 0 replies; only message in thread
From: John David Anglin @ 2023-12-06 15:39 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:458e7c937924bbcef80eb006af0b61420dbfc1c1

commit r14-6223-g458e7c937924bbcef80eb006af0b61420dbfc1c1
Author: John David Anglin <danglin@gcc.gnu.org>
Date:   Wed Dec 6 15:38:50 2023 +0000

    Fix c-c++-common/fhardened-[12].c test fails on hppa
    
    The -fstack-protector and -fstack-protector-strong options are
    not supported on hppa since the stack grows up.
    
    2023-12-06  John David Anglin  <danglin@gcc.gnu.org>
    
    gcc/testsuite/ChangeLog:
    
            * c-c++-common/fhardened-1.c: Ignore __SSP_STRONG__ define
            if __hppa__ is defined.
            * c-c++-common/fhardened-2.c: Ignore __SSP__ define
            if __hppa__ is defined.

Diff:
---
 gcc/testsuite/c-c++-common/fhardened-1.c | 2 +-
 gcc/testsuite/c-c++-common/fhardened-2.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/testsuite/c-c++-common/fhardened-1.c b/gcc/testsuite/c-c++-common/fhardened-1.c
index 7e6740655fe..23478be76b2 100644
--- a/gcc/testsuite/c-c++-common/fhardened-1.c
+++ b/gcc/testsuite/c-c++-common/fhardened-1.c
@@ -1,7 +1,7 @@
 /* { dg-do compile { target *-*-linux* *-*-gnu* } } */
 /* { dg-options "-fhardened -O" } */
 
-#ifndef __SSP_STRONG__
+#if !defined(__SSP_STRONG__) && !defined(__hppa__)
 # error "-fstack-protector-strong not enabled"
 #endif
 
diff --git a/gcc/testsuite/c-c++-common/fhardened-2.c b/gcc/testsuite/c-c++-common/fhardened-2.c
index 280ff96eb15..6ac66f9f6b7 100644
--- a/gcc/testsuite/c-c++-common/fhardened-2.c
+++ b/gcc/testsuite/c-c++-common/fhardened-2.c
@@ -4,7 +4,7 @@
 #ifdef __SSP_STRONG__
 # error "-fstack-protector-strong enabled when it should not be"
 #endif
-#ifndef __SSP__
+#if !defined(__SSP__) && !defined(__hppa__)
 # error "-fstack-protector not enabled"
 #endif

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-12-06 15:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-06 15:39 [gcc r14-6223] Fix c-c++-common/fhardened-[12].c test fails on hppa John David Anglin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).