From: Richard Biener Date: Wed, 8 Oct 2025 09:38:12 +0000 (+0200) Subject: Do not expect 8 byte vectorization with ia32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b999bf40090f356c5bb5ff8a82e7e0dc4c4ae05;p=thirdparty%2Fgcc.git Do not expect 8 byte vectorization with ia32 We are not considering ia32 to be TARGET_MMX_WITH_SSE so the testcase cannot work there. PR target/120091 gcc/testsuite/ * gcc.target/i386/pr119919.c: Only check for vectorization when !ia32. --- diff --git a/gcc/testsuite/gcc.target/i386/pr119919.c b/gcc/testsuite/gcc.target/i386/pr119919.c index e39819f682d..bf11f917192 100644 --- a/gcc/testsuite/gcc.target/i386/pr119919.c +++ b/gcc/testsuite/gcc.target/i386/pr119919.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-O2 -msse2 -fdump-tree-vect-details -mtune=znver1" } */ + int a[9*9]; bool b[9]; void test() @@ -10,4 +11,4 @@ void test() } } -/* { dg-final { scan-tree-dump "loop vectorized using 8 byte vectors" "vect" } } */ +/* { dg-final { scan-tree-dump "loop vectorized using 8 byte vectors" "vect" { target { ! ia32 } } } } */