diff options
author | Christophe Lyon <christophe.lyon@foss.st.com> | 2021-06-30 13:47:07 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@foss.st.com> | 2021-07-08 13:54:10 +0000 |
commit | 1ca642d785c49e9e0b28651b190720267703f023 (patch) | |
tree | bf172d7c0c98f32de0a9bd9fd0c40c672fed0026 /gcc | |
parent | 43931c97820a8ec9ad01784530ba61332fd87cc8 (diff) | |
download | gcc-1ca642d785c49e9e0b28651b190720267703f023.zip gcc-1ca642d785c49e9e0b28651b190720267703f023.tar.gz gcc-1ca642d785c49e9e0b28651b190720267703f023.tar.bz2 |
testsuite: Add arm_arch_v7a_ok effective-target to pr57351.c
I've noticed that overriding cpu/arch flags when running the testsuite
can cause this test to fail rather than being skipped because of
incompatible flags combination.
Since the test forces -march=armv7-a, make sure it is accepted in
combination with the current runtestflags.
2021-07-08 Christophe Lyon <christophe.lyon@foss.st.om>
gcc/testsuite/
* gcc.dg/debug/pr57351.c: Require arm_arch_v7a_ok
effective-target.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/debug/pr57351.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/debug/pr57351.c b/gcc/testsuite/gcc.dg/debug/pr57351.c index 972f3e9..236d74d 100644 --- a/gcc/testsuite/gcc.dg/debug/pr57351.c +++ b/gcc/testsuite/gcc.dg/debug/pr57351.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-require-effective-target arm_neon } */ +/* { dg-require-effective-target arm_arch_v7a_ok } */ /* { dg-options "-std=c99 -Os -g -march=armv7-a" } */ /* { dg-add-options arm_neon } */ |