diff mbox series

[committed] testsuite: Fix pr113431.c FAIL on sparc* [PR113431]

Message ID ZfRu7A+JQHtSvkBz@tucnak
State New
Headers show
Series [committed] testsuite: Fix pr113431.c FAIL on sparc* [PR113431] | expand

Commit Message

Jakub Jelinek March 15, 2024, 3:53 p.m. UTC
Hi!

As mentioned in the PR, the new testcase FAILs on sparc*-* due to
lack of support of misaligned store.

This patch restricts that to vect_hw_misalign targets.

Tested on x86_64-linux -m32/-m64, committed to trunk based on
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113431#c21 comment.

2024-03-15  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/113431
	* gcc.dg/vect/pr113431.c: Restrict scan-tree-dump-times to
	vect_hw_misalign targets.


	Jakub
diff mbox series

Patch

--- gcc/testsuite/gcc.dg/vect/pr113431.c.jj	2024-01-18 08:44:33.673916652 +0100
+++ gcc/testsuite/gcc.dg/vect/pr113431.c	2024-03-15 16:46:27.328154091 +0100
@@ -15,4 +15,4 @@  int main()
   return 0;
 }
 
-/* { dg-final { scan-tree-dump-times "optimized: basic block part vectorized" 2 "slp1" { target vect_int } } } */
+/* { dg-final { scan-tree-dump-times "optimized: basic block part vectorized" 2 "slp1" { target { vect_int && vect_hw_misalign } } } } */