re PR tree-optimization/71478 (ICE in tree-ssa-reassoc.c after r236564)

PR middle-end/71478
	* gcc.dg/pr71478.c: Remove dg-require-effective-target vect_int.
	Add -Wno-psabi -w to dg-options.

From-SVN: r237392
This commit is contained in:
Jakub Jelinek 2016-06-13 20:54:25 +02:00 committed by Jakub Jelinek
parent 402e60c546
commit 0ac249bf93
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2016-06-13 Jakub Jelinek <jakub@redhat.com>
PR middle-end/71478
* gcc.dg/pr71478.c: Remove dg-require-effective-target vect_int.
Add -Wno-psabi -w to dg-options.
2016-06-13 Kelvin Nilsen <kelvin@gcc.gnu.org>
* gcc.target/powerpc/vadsdu-0.c: New test.

View File

@ -1,7 +1,6 @@
/* PR middle-end/71478 */
/* { dg-require-effective-target vect_int } */
/* { dg-do compile } */
/* { dg-options "-O3" } */
/* { dg-options "-O3 -Wno-psabi -w" } */
typedef unsigned int __attribute__ ((vector_size (8))) uv2si;
typedef int __attribute__ ((vector_size (8))) v2si;
@ -18,4 +17,3 @@ foo (void)
uv2si j = k * __builtin_shuffle (z, z, (uv2si) {1, 3});
return k * j;
}