diff mbox

[rs6000,committed] Fix effective target in gcc.target/powerpc/pr63335.c

Message ID 1411759991.2935.88.camel@gnopaine
State New
Headers show

Commit Message

Bill Schmidt Sept. 26, 2014, 7:33 p.m. UTC
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  <wschmidt@linux.vnet.ibm.com>

	* gcc.target/powerpc/pr63335.c: Change effective target to
	vsx_hw.
diff mbox

Patch

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>