Hi!

On aarch64, powerpc64le and s390x-linux I'm seeing another syntax error
which didn't show up on x86_64-linux nor i686-linux:
ERROR: gcc.dg/vect/slp-perm-8.c -flto -ffat-lto-objects: error executing 
dg-final: syntax error in target selector "target  ! vect_load_lanes  && 
vect_partial_vectors_usage_1 &&  ! s390_vx"
ERROR: gcc.dg/vect/slp-perm-8.c: error executing dg-final: syntax error in 
target selector "target  ! vect_load_lanes  && vect_partial_vectors_usage_1 &&  
! s390_vx"

The following patch fixes that.

Tested with a cross to aarch64-linux, committed to trunk as obvious.

2023-03-05  Jakub Jelinek  <ja...@redhat.com>

        * gcc.dg/vect/slp-perm-8.c: Fix up syntax error in
        scan-tree-dump-times target selector.

--- gcc/testsuite/gcc.dg/vect/slp-perm-8.c.jj   2023-03-03 16:08:17.707264399 
+0100
+++ gcc/testsuite/gcc.dg/vect/slp-perm-8.c      2023-03-05 19:05:28.379974608 
+0100
@@ -60,9 +60,9 @@ int main (int argc, const char* argv[])
 }
 
 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { 
vect_perm_byte } } } } */
-/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { 
target { vect_perm3_byte && { { ! vect_load_lanes } && { {! 
vect_partial_vectors_usage_1 } || s390_vx } } } } } } */
+/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { 
target { vect_perm3_byte && { { ! vect_load_lanes } && { { ! 
vect_partial_vectors_usage_1 } || s390_vx } } } } } } */
 /* The epilogues are vectorized using partial vectors.  */
-/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 2 "vect" { 
target { vect_perm3_byte && { { ! vect_load_lanes } && 
vect_partial_vectors_usage_1 && { ! s390_vx } } } } } } */
+/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 2 "vect" { 
target { vect_perm3_byte && { { ! vect_load_lanes } && { 
vect_partial_vectors_usage_1 && { ! s390_vx } } } } } } } */
 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 0 "vect" { 
target vect_load_lanes } } } */
 /* { dg-final { scan-tree-dump "Built SLP cancelled: can use load/store-lanes" 
"vect" { target { vect_perm3_byte && vect_load_lanes } } } } */
 /* { dg-final { scan-tree-dump "LOAD_LANES" "vect" { target vect_load_lanes } 
} } */

        Jakub

Reply via email to