diff options
author | Juzhe-Zhong <juzhe.zhong@rivai.ai> | 2024-01-18 15:21:10 +0800 |
---|---|---|
committer | Lehua Ding <lehua.ding@rivai.ai> | 2024-01-18 15:31:01 +0800 |
commit | cc34fc9ffde60815b6571a60129199ddc5a07ca2 (patch) | |
tree | 2f6169d889d5b639062076bff3aa9b093aea3efb /gcc | |
parent | 227b8df46618682d29080f2de145edd32c42d359 (diff) | |
download | gcc-cc34fc9ffde60815b6571a60129199ddc5a07ca2.zip gcc-cc34fc9ffde60815b6571a60129199ddc5a07ca2.tar.gz gcc-cc34fc9ffde60815b6571a60129199ddc5a07ca2.tar.bz2 |
test regression fix: Add !vect128 for variable length targets of bb-slp-subgroups-3.c
gcc/testsuite/ChangeLog:
* gcc.dg/vect/bb-slp-subgroups-3.c: Add !vect128.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/bb-slp-subgroups-3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/bb-slp-subgroups-3.c b/gcc/testsuite/gcc.dg/vect/bb-slp-subgroups-3.c index fb71991..d1d7912 100644 --- a/gcc/testsuite/gcc.dg/vect/bb-slp-subgroups-3.c +++ b/gcc/testsuite/gcc.dg/vect/bb-slp-subgroups-3.c @@ -42,7 +42,7 @@ main (int argc, char **argv) /* Because we disable the cost model, targets with variable-length vectors can end up vectorizing the store to a[0..7] on its own. With the cost model we do something sensible. */ -/* { dg-final { scan-tree-dump-times "optimized: basic block" 2 "slp2" { target { ! amdgcn-*-* } xfail vect_variable_length } } } */ +/* { dg-final { scan-tree-dump-times "optimized: basic block" 2 "slp2" { target { ! amdgcn-*-* } xfail { vect_variable_length && { ! vect128 } } } } } */ /* amdgcn can do this in one vector. */ /* { dg-final { scan-tree-dump-times "optimized: basic block" 1 "slp2" { target amdgcn-*-* } } } */ |