diff options
author | Pan Li <pan2.li@intel.com> | 2023-12-03 22:13:00 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2023-12-03 22:17:30 +0800 |
commit | 806789e6daa39ab0503d91c71b3faeb5d5cdd317 (patch) | |
tree | f13c3e001e966461274d2ebc4ea6eb162ad5e792 | |
parent | f37744662cbc74efcceb790b99dcd6521c51a578 (diff) | |
download | gcc-806789e6daa39ab0503d91c71b3faeb5d5cdd317.zip gcc-806789e6daa39ab0503d91c71b3faeb5d5cdd317.tar.gz gcc-806789e6daa39ab0503d91c71b3faeb5d5cdd317.tar.bz2 |
RISC-V: Fix typo in test abi configuration
It should be -mabi=lp64d instead of -mabi=lp64, committed in as obvious.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/rvv/base/pr112743-1.c: Fix typo.
* gcc.target/riscv/rvv/base/pr112743-2.c: Ditto.
Signed-off-by: Pan Li <pan2.li@intel.com>
-rw-r--r-- | gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-2.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-1.c b/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-1.c index 2e62e60..0f6d005 100644 --- a/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-1.c +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-1.c @@ -1,6 +1,6 @@ /* Test that we do not have ice when compile */ /* { dg-do compile } */ -/* { dg-options "-march=rv64gc_zve32f_zvfh_zfh -mabi=lp64 -O2" } */ +/* { dg-options "-march=rv64gc_zve32f_zvfh_zfh -mabi=lp64d -O2" } */ typedef struct test_a { void *x; diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-2.c b/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-2.c index fdb35fd..27eefc6 100644 --- a/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-2.c +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/pr112743-2.c @@ -1,6 +1,6 @@ /* Test that we do not have ice when compile */ /* { dg-do compile } */ -/* { dg-options "-march=rv64gc_zve32f_zvfh_zfh -mabi=lp64 -O2" } */ +/* { dg-options "-march=rv64gc_zve32f_zvfh_zfh -mabi=lp64d -O2" } */ #include <sys/types.h> |