diff options
author | Patrick O'Neill <patrick@rivosinc.com> | 2023-12-15 14:47:19 -0700 |
---|---|---|
committer | Jeff Law <jlaw@ventanamicro.com> | 2023-12-15 14:47:19 -0700 |
commit | 723d62feae96fb528d5faf715fe2ff47233670a0 (patch) | |
tree | 57c39452d1c1a01320e243250632610633ed7406 /gcc | |
parent | 082835836cf763e74ed2fdf9645ac4f1f94d6d4f (diff) | |
download | gcc-723d62feae96fb528d5faf715fe2ff47233670a0.zip gcc-723d62feae96fb528d5faf715fe2ff47233670a0.tar.gz gcc-723d62feae96fb528d5faf715fe2ff47233670a0.tar.bz2 |
[PATCH] RISC-V: Add -fno-vect-cost-model to pr112773 testcase
The testcase for pr112773 started passing after r14-6472-g8501edba91e
which was before the actual fix. This patch adds -fno-vect-cost-model
which prevents the testcase from passing due to the vls change.
gcc/testsuite/ChangeLog:
* gcc.target/riscv/rvv/autovec/partial/pr112773.c: Add
-fno-vect-cost-model.
Signed-off-by: Patrick O'Neill <patrick@rivosinc.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/riscv/rvv/autovec/partial/pr112773.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/partial/pr112773.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/partial/pr112773.c index 5f7374b..57104c9 100644 --- a/gcc/testsuite/gcc.target/riscv/rvv/autovec/partial/pr112773.c +++ b/gcc/testsuite/gcc.target/riscv/rvv/autovec/partial/pr112773.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-additional-options "-march=rv32gcv_zvl256b -mabi=ilp32d -O3" } */ +/* { dg-additional-options "-march=rv32gcv_zvl256b -mabi=ilp32d -O3 -fno-vect-cost-model" } */ long long a; int b, c; |