altivec-3.c: Move call to altivec_check.

2004-05-24  Janis Johnson  <janis187@us.ibm.com>

	* gcc.dg/altivec-3.c: Move call to altivec_check.

From-SVN: r82211
This commit is contained in:
Janis Johnson 2004-05-24 17:51:15 +00:00 committed by Janis Johnson
parent 6046b0ed57
commit 386f10152b
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2004-05-24 Janis Johnson <janis187@us.ibm.com>
* gcc.dg/altivec-3.c: Move call to altivec_check.
2004-05-23 Mark Mitchell <mark@codesourcery.com>
PR c++/15044

View File

@ -49,7 +49,8 @@ compare_float4 (float *a, float *b)
abort ();
}
main ()
void
main1 ()
{
int loc1 = 600, loc2 = 800;
int4 a3 = (int4) { loc1, loc2, 1000, 1200 };
@ -58,8 +59,6 @@ main ()
float4 f3 = (float4) { 6.0, 8.0, 10.0, 12.0 };
float4 ftmp;
altivec_check ();
vec_store (i3, a3);
itmp = vec_add_int4 (a1, a2);
vec_store (j3, itmp);
@ -69,6 +68,12 @@ main ()
ftmp = vec_add_float4 (f1, f2);
vec_store (h3, ftmp);
compare_float4 (g3, h3);
}
int
main ()
{
altivec_check ();
main1 ();
exit (0);
}