Commit a2ab121e by Janis Johnson Committed by Janis Johnson

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
parent 8768c655
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.
......
/* { 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 ();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment