Skip to content

Commit b7baa22

Browse files
RISC-V: Fix incorrect optimization options passing to convert and unop
Like the strided load/store, the testcases of vector convert and unop are designed to pick up different sorts of optimization options but actually these option are ignored according to the Execution log of the gcc.log. This patch would like to make it correct almost the same as how we fixed for strided load/store. The below test suites are passed for this patch. * The rv64gcv fully regression test. It is test only patch and obvious up to a point, will commit it directly if no comments in next 48H. gcc/testsuite/ChangeLog: * gcc.target/riscv/rvv/rvv.exp: Fix the incorrect optimization options passing to testcases. Signed-off-by: Pan Li <[email protected]>
1 parent 76b462f commit b7baa22

File tree

1 file changed

+2
-2
lines changed
  • gcc/testsuite/gcc.target/riscv/rvv

1 file changed

+2
-2
lines changed

gcc/testsuite/gcc.target/riscv/rvv/rvv.exp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ foreach op $AUTOVEC_TEST_OPTS {
6767
dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/autovec/cmp/*.\[cS\]]] \
6868
"" "$op"
6969
dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/autovec/conversions/*.\[cS\]]] \
70-
"" "$op"
70+
"$op" ""
7171
dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/autovec/unop/*.\[cS\]]] \
72-
"" "$op"
72+
"$op" ""
7373
dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/autovec/ternop/*.\[cS\]]] \
7474
"$op" ""
7575
dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/autovec/reduc/*.\[cS\]]] \

0 commit comments

Comments
 (0)