diff options
author | Juzhe-Zhong <juzhe.zhong@rivai.ai> | 2023-12-19 12:35:23 +0800 |
---|---|---|
committer | Pan Li <pan2.li@intel.com> | 2023-12-19 14:07:39 +0800 |
commit | 746e7b214d61879c3531c0f0fe34656764a26906 (patch) | |
tree | 98412a138d21f9a3c33d1b537a38c3123a7bbc75 | |
parent | b61e849bd39e55509bc383514a9f4333ea88b3d2 (diff) | |
download | gcc-746e7b214d61879c3531c0f0fe34656764a26906.zip gcc-746e7b214d61879c3531c0f0fe34656764a26906.tar.gz gcc-746e7b214d61879c3531c0f0fe34656764a26906.tar.bz2 |
RISC-V: Fix FAIL of dynamic-lmul2-7.c
Fix this FAIL:
FAIL: gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c scan-tree-dump-times vect "Maximum lmul = 2" 1
gcc/testsuite/ChangeLog:
* gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c: Adapt test.
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c b/gcc/testsuite/gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c index 0e6d5fe..636332d 100644 --- a/gcc/testsuite/gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c +++ b/gcc/testsuite/gcc.dg/vect/costmodel/riscv/rvv/dynamic-lmul2-7.c @@ -22,5 +22,5 @@ bar (int *x, int a, int b, int n) /* { dg-final { scan-assembler-times {ret} 2 } } * /* { dg-final { scan-tree-dump-times "Maximum lmul = 8" 1 "vect" } } */ /* { dg-final { scan-tree-dump-times "Maximum lmul = 4" 1 "vect" } } */ -/* { dg-final { scan-tree-dump-times "Maximum lmul = 2" 1 "vect" } } */ +/* { dg-final { scan-tree-dump "Maximum lmul = 2" "vect" } } */ /* { dg-final { scan-tree-dump-not "Maximum lmul = 1" "vect" } } */ |