Hi, I goofed on the effective target in the subject test, checking only if it was ok to produce VSX instructions, not whether we were running on hardware with VSX support. The latter is needed. This triggered a failure on the VSX-less regression tester. Fix committed as obvious.
Thanks, Bill 2014-09-26 Bill Schmidt <wschm...@linux.vnet.ibm.com> * gcc.target/powerpc/pr63335.c: Change effective target to vsx_hw. Index: gcc/testsuite/gcc.target/powerpc/pr63335.c =================================================================== --- gcc/testsuite/gcc.target/powerpc/pr63335.c (revision 215645) +++ gcc/testsuite/gcc.target/powerpc/pr63335.c (working copy) @@ -1,5 +1,5 @@ /* { dg-do run { target { powerpc64*-*-* } } } */ -/* { dg-require-effective-target powerpc_vsx_ok } */ +/* { dg-require-effective-target vsx_hw } */ /* { dg-options "-mvsx" } */ #include <altivec.h>