From 6ed43713e4c894c196ee07991aa25e09322f8ab4 Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" Date: Sat, 22 Jul 2023 17:48:09 +0100 Subject: [PATCH] testsuite: Limit bb-slp-pr95839-v8.c to 64-bit vector targets Only run bb-slp-pr95839-v8.c with targets that support vectors of 64 bits, removing regressions with 32-bit x86 targets: FAIL: gcc.dg/vect/bb-slp-pr95839-v8.c scan-tree-dump slp2 "optimized: basic block" FAIL: gcc.dg/vect/bb-slp-pr95839-v8.c -flto -ffat-lto-objects scan-tree-dump slp2 "optimized: basic block" gcc/testsuite/ * gcc.dg/vect/bb-slp-pr95839-v8.c: Limit to `vect64' targets. --- gcc/testsuite/gcc.dg/vect/bb-slp-pr95839-v8.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/testsuite/gcc.dg/vect/bb-slp-pr95839-v8.c b/gcc/testsuite/gcc.dg/vect/bb-slp-pr95839-v8.c index 9a021072a07e..fea7f00fd655 100644 --- a/gcc/testsuite/gcc.dg/vect/bb-slp-pr95839-v8.c +++ b/gcc/testsuite/gcc.dg/vect/bb-slp-pr95839-v8.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-require-effective-target vect_float } */ +/* { dg-require-effective-target vect64 } */ /* { dg-additional-options "-w -Wno-psabi" } */ typedef float __attribute__((vector_size(8))) v2f32; -- 2.47.2