From: Richard Biener Date: Thu, 24 Aug 2023 08:55:06 +0000 (+0200) Subject: testsuite/111125 - disable BB vectorization for the test X-Git-Tag: basepoints/gcc-15~6703 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=308e716266787f84ba4a47546317dae83be8901c;p=thirdparty%2Fgcc.git testsuite/111125 - disable BB vectorization for the test The test is for loop vectorization producing non-canonical multiplications. We can now BB vectorize the whole function when the target supports .REDUC_PLUS for V2SImode but we don't have a dejagnu selector for that. Disable BB vectorization like we disabled epilogue vectorization. PR testsuite/111125 * gcc.dg/vect/pr53773.c: Disable BB vectorization. --- diff --git a/gcc/testsuite/gcc.dg/vect/pr53773.c b/gcc/testsuite/gcc.dg/vect/pr53773.c index 7f8229571ecf..213e74e0b9d4 100644 --- a/gcc/testsuite/gcc.dg/vect/pr53773.c +++ b/gcc/testsuite/gcc.dg/vect/pr53773.c @@ -1,7 +1,10 @@ /* Disabling epilogues until we find a better way to deal with scans. */ /* { dg-additional-options "--param vect-epilogues-nomask=0" } */ /* { dg-do compile } */ -/* { dg-additional-options "-fdump-tree-optimized" } */ +/* Disable BB vectorization, we now can cover the whole loop with that + when the target supports .REDUC_PLUS for integers, we don't have a + good target selector for this. */ +/* { dg-additional-options "-fdump-tree-optimized -fno-tree-slp-vectorize" } */ int foo (int integral, int decimal, int power_ten)