diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2021-01-18 15:45:47 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2021-01-18 15:45:47 +0000 |
commit | 76c1dd15e4a056a59a13b2208af23a6bd67c2682 (patch) | |
tree | 01846dc0310eead9dfcf120da0fcb6d98e1d7c78 | |
parent | 66cbe54960c9d5674911ba8af5e873494db8880f (diff) | |
download | gcc-76c1dd15e4a056a59a13b2208af23a6bd67c2682.zip gcc-76c1dd15e4a056a59a13b2208af23a6bd67c2682.tar.gz gcc-76c1dd15e4a056a59a13b2208af23a6bd67c2682.tar.bz2 |
Skip asm goto tests on hppa*-*-*.
gcc/testsuite/ChangeLog:
PR testsuite/97987
* gcc.c-torture/compile/asmgoto-2.c: Skip on hppa.
* gcc.c-torture/compile/asmgoto-5.c: Likewise.
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/asmgoto-2.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/asmgoto-5.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/asmgoto-2.c b/gcc/testsuite/gcc.c-torture/compile/asmgoto-2.c index f1b30c0..d2d2ac5 100644 --- a/gcc/testsuite/gcc.c-torture/compile/asmgoto-2.c +++ b/gcc/testsuite/gcc.c-torture/compile/asmgoto-2.c @@ -1,5 +1,6 @@ /* This test should be switched off for a new target with less than 4 allocatable registers */ /* { dg-do compile } */ +/* { dg-skip-if "Reload target" { hppa*-*-* } } */ int foo (void) { diff --git a/gcc/testsuite/gcc.c-torture/compile/asmgoto-5.c b/gcc/testsuite/gcc.c-torture/compile/asmgoto-5.c index 94c14dd..ce751ce 100644 --- a/gcc/testsuite/gcc.c-torture/compile/asmgoto-5.c +++ b/gcc/testsuite/gcc.c-torture/compile/asmgoto-5.c @@ -1,6 +1,7 @@ /* Test to generate output reload in asm goto on x86_64. */ /* { dg-do compile } */ /* { dg-skip-if "no O0" { { i?86-*-* x86_64-*-* } && { ! ia32 } } { "-O0" } { "" } } */ +/* { dg-skip-if "Reload target" { hppa*-*-* } } */ #if defined __x86_64__ #define ASM(s) asm (s) |