diff options
author | Jeff Law <jlaw@ventanamicro.com> | 2023-08-27 13:00:13 -0600 |
---|---|---|
committer | Jeff Law <jlaw@ventanamicro.com> | 2023-08-27 13:00:13 -0600 |
commit | 3745feb19ed072e0865b12a891d7dbf7ba12c337 (patch) | |
tree | c00437c8bcac60b0aaae829bb1a6e6b8cec11ba0 /gcc | |
parent | 6567837fd823a93f7f7948a73ff9dc1153592e8c (diff) | |
download | gcc-3745feb19ed072e0865b12a891d7dbf7ba12c337.zip gcc-3745feb19ed072e0865b12a891d7dbf7ba12c337.tar.gz gcc-3745feb19ed072e0865b12a891d7dbf7ba12c337.tar.bz2 |
RISC-V: Fix spill-11.c testsuite failure
Jivan's work also results in using a different save/restore function for the
spill-11 test. So the expected output needs minor adjusting
gcc/testsuite
* gcc.target/riscv/rvv/base/spill-11.c: Adjust expected output.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/riscv/rvv/base/spill-11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/base/spill-11.c b/gcc/testsuite/gcc.target/riscv/rvv/base/spill-11.c index 179be1c..484a251 100644 --- a/gcc/testsuite/gcc.target/riscv/rvv/base/spill-11.c +++ b/gcc/testsuite/gcc.target/riscv/rvv/base/spill-11.c @@ -9,7 +9,7 @@ void fn3 (char*); /* ** stack_save_restore_2: -** call\tt0,__riscv_save_2 +** call\tt0,__riscv_save_1 ** csrr\tt0,vlenb ** slli\tt1,t0,1 ** sub\tsp,sp,t1 @@ -23,7 +23,7 @@ void fn3 (char*); ** li\tt0,8192 ** addi\tt0,t0,-192 ** add\tsp,sp,t0 -** tail\t__riscv_restore_2 +** tail\t__riscv_restore_1 */ int stack_save_restore_2 (float a1, float a2, float a3, float a4, float a5, float a6, float a7, float a8, |