diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2021-04-22 12:43:25 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2021-04-22 12:46:22 +0000 |
commit | d44d8ed6b4e6fb2d0cf7566214e2e8281dd44cf0 (patch) | |
tree | b40f40ef090bb3bc4d31e2d81e0b1a7f6480c039 /gcc | |
parent | faf7d413a3f3337be1a3ac5cdf33e0e3b87b426e (diff) | |
download | gcc-d44d8ed6b4e6fb2d0cf7566214e2e8281dd44cf0.zip gcc-d44d8ed6b4e6fb2d0cf7566214e2e8281dd44cf0.tar.gz gcc-d44d8ed6b4e6fb2d0cf7566214e2e8281dd44cf0.tar.bz2 |
testsuite/aarch64: Run pr99988.c test under lp64 only
The new test fails with -mabi=ilp32:
sorry, unimplemented: return address signing is only supported for '-mabi=lp64'
2021-04-22 Christophe Lyon <christophe.lyon@linaro.org>
gcc/testsuite/
PR target/99988
* gcc.target/aarch64/pr99988.c: Skip if not lp64 target.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/pr99988.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/pr99988.c b/gcc/testsuite/gcc.target/aarch64/pr99988.c index 2d87f41..7cca496 100644 --- a/gcc/testsuite/gcc.target/aarch64/pr99988.c +++ b/gcc/testsuite/gcc.target/aarch64/pr99988.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target lp64 } } */ /* { dg-options "-O2 -mbranch-protection=standard" } */ /* { dg-final { scan-assembler-times {bti j} 13 } } */ int a; |