diff options
author | Xi Ruoyao <xry111@xry111.site> | 2022-09-24 14:50:03 +0800 |
---|---|---|
committer | Xi Ruoyao <xry111@xry111.site> | 2023-03-07 15:37:01 +0800 |
commit | 5937cfb981debb2aeb72a1ed255fc3ed5a5835c4 (patch) | |
tree | b602f244f528676872970471f2391d7749187a32 /gcc | |
parent | 4c59cfc4a4da579d60bfd82404e3ff51c72aca79 (diff) | |
download | gcc-5937cfb981debb2aeb72a1ed255fc3ed5a5835c4.zip gcc-5937cfb981debb2aeb72a1ed255fc3ed5a5835c4.tar.gz gcc-5937cfb981debb2aeb72a1ed255fc3ed5a5835c4.tar.bz2 |
aarch64: testsuite: disable stack protector for pr104005.c
Storing stack guarding variable need one stp instruction, breaking the
scan-assembler-not pattern in the test. Disable stack protector to
avoid a test failure with --enable-default-ssp.
gcc/testsuite/ChangeLog:
* gcc.target/aarch64/pr104005.c (dg-options): Add
-fno-stack-protector.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/pr104005.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/pr104005.c b/gcc/testsuite/gcc.target/aarch64/pr104005.c index 09dd819..9f1ef2d 100644 --- a/gcc/testsuite/gcc.target/aarch64/pr104005.c +++ b/gcc/testsuite/gcc.target/aarch64/pr104005.c @@ -1,4 +1,4 @@ -/* { dg-options "-O2 -funroll-loops" } */ +/* { dg-options "-O2 -funroll-loops -fno-stack-protector" } */ typedef int v2 __attribute__((vector_size(8))); |