altivec-2.C: Revert previous changes and don't execute.

2004-08-13  Janis Johnson  <janis187@us.ibm.com>

	* g++.dg/ext/altivec-2.C: Revert previous changes and don't execute.

From-SVN: r85961
This commit is contained in:
Janis Johnson 2004-08-13 21:11:24 +00:00 committed by Janis Johnson
parent 8768c65511
commit a2ab121e83
2 changed files with 8 additions and 8 deletions

View file

@ -1,3 +1,7 @@
2004-08-13 Janis Johnson <janis187@us.ibm.com>
* g++.dg/ext/altivec-2.C: Revert previous changes and don't execute.
2004-08-13 Paul Brook <paul@codesourcery.com>
* gfortran.dg/der_io_1.f90: Remove stray comma.

View file

@ -1,4 +1,4 @@
/* { dg-do run { target powerpc*-*-* } } */
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-xfail-if "" { "powerpc-ibm-aix*" } { "-maltivec" } { "" } } */
/* { dg-options "-maltivec -Wall" } */
@ -8,13 +8,15 @@
#include <altivec.h>
#include "altivec_check.h"
int main1 (void)
int main (int argc, const char * argv[])
{
int i;
const float cf = 1.0;
vector float v;
const vector float cv = (vector float){1.0, 2.0, 3.0, 4.0};
altivec_check ();
vec_dst(&cv, i, 0);
v = vec_ld(0, &cv);
v = vec_lde(0, &cf);
@ -22,9 +24,3 @@ int main1 (void)
return 0;
}
int main (int argc, const char * argv[])
{
altivec_check ();
return main1 ();
}