diff options
author | Juzhe-Zhong <juzhe.zhong@rivai.ai> | 2023-10-09 21:15:30 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2023-10-09 22:35:16 +0800 |
commit | e90eddde570b5082a61369b07894971566536d6e (patch) | |
tree | d207ff805f133256b6367987aa8da469673def56 /gcc | |
parent | 30b76f860a46497592904ed696b9a987769dc775 (diff) | |
download | gcc-e90eddde570b5082a61369b07894971566536d6e.zip gcc-e90eddde570b5082a61369b07894971566536d6e.tar.gz gcc-e90eddde570b5082a61369b07894971566536d6e.tar.bz2 |
RISC-V Regression tests: Fix FAIL of pr97832* for RVV
These cases are vectorized by vec_load_lanes with strided = 8 instead of SLP
with -fno-vect-cost-model.
gcc/testsuite/ChangeLog:
* gcc.dg/vect/pr97832-2.c: Adapt dump check for target supports load_lanes with stride = 8.
* gcc.dg/vect/pr97832-3.c: Ditto.
* gcc.dg/vect/pr97832-4.c: Ditto.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/pr97832-2.c | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/pr97832-3.c | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/pr97832-4.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/pr97832-2.c b/gcc/testsuite/gcc.dg/vect/pr97832-2.c index 4f05781..7d8d269 100644 --- a/gcc/testsuite/gcc.dg/vect/pr97832-2.c +++ b/gcc/testsuite/gcc.dg/vect/pr97832-2.c @@ -25,5 +25,5 @@ void foo1x1(double* restrict y, const double* restrict x, int clen) } } -/* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" } } */ -/* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" } } */ +/* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" { target { ! { vect_load_lanes && vect_strided8 } } } } } */ +/* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" { target { ! { vect_load_lanes && vect_strided8 } } } } } */ diff --git a/gcc/testsuite/gcc.dg/vect/pr97832-3.c b/gcc/testsuite/gcc.dg/vect/pr97832-3.c index ad1225d..c0603e1 100644 --- a/gcc/testsuite/gcc.dg/vect/pr97832-3.c +++ b/gcc/testsuite/gcc.dg/vect/pr97832-3.c @@ -46,5 +46,5 @@ void foo(double* restrict y, const double* restrict x0, const double* restrict x } } -/* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" } } */ -/* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" } } */ +/* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" { target { ! { vect_load_lanes && vect_strided8 } } } } } */ +/* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" { target { ! { vect_load_lanes && vect_strided8 } } } } } */ diff --git a/gcc/testsuite/gcc.dg/vect/pr97832-4.c b/gcc/testsuite/gcc.dg/vect/pr97832-4.c index 74ae27f..c034428 100644 --- a/gcc/testsuite/gcc.dg/vect/pr97832-4.c +++ b/gcc/testsuite/gcc.dg/vect/pr97832-4.c @@ -24,5 +24,5 @@ void foo1x1(double* restrict y, const double* restrict x, int clen) } } -/* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" } } */ -/* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" } } */ +/* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" { target { ! { vect_load_lanes && vect_strided8 } } } } } */ +/* { dg-final { scan-tree-dump "Loop contains only SLP stmts" "vect" { target { ! { vect_load_lanes && vect_strided8 } } } } } */ |