public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-6496] testsuite: Fix up syntax error in scan-tree-dump-times target selector
@ 2023-03-05 18:11 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2023-03-05 18:11 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:ca27d765f1d88a0f9d625b3519b6a8b1f8b19cc7

commit r13-6496-gca27d765f1d88a0f9d625b3519b6a8b1f8b19cc7
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Sun Mar 5 19:08:26 2023 +0100

    testsuite: Fix up syntax error in scan-tree-dump-times target selector
    
    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.
    
    2023-03-05  Jakub Jelinek  <jakub@redhat.com>
    
            * gcc.dg/vect/slp-perm-8.c: Fix up syntax error in
            scan-tree-dump-times target selector.

Diff:
---
 gcc/testsuite/gcc.dg/vect/slp-perm-8.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/testsuite/gcc.dg/vect/slp-perm-8.c b/gcc/testsuite/gcc.dg/vect/slp-perm-8.c
index 4023670d445..44df21aae2a 100644
--- a/gcc/testsuite/gcc.dg/vect/slp-perm-8.c
+++ b/gcc/testsuite/gcc.dg/vect/slp-perm-8.c
@@ -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 } } } */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-05 18:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-05 18:11 [gcc r13-6496] testsuite: Fix up syntax error in scan-tree-dump-times target selector Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).