altivec-3.c: Move call to altivec_check.
authorJanis Johnson <janis187@us.ibm.com>
Mon, 24 May 2004 17:51:15 +0000 (17:51 +0000)
committerJanis Johnson <janis@gcc.gnu.org>
Mon, 24 May 2004 17:51:15 +0000 (17:51 +0000)
2004-05-24  Janis Johnson  <janis187@us.ibm.com>

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

From-SVN: r82211

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/altivec-3.c

index 667a742a8ecf04afa961edd5c1eec648ac6838a3..bd68df784cd9771a1b8a1795b4bf281d544e3c55 100644 (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
index d442b229e5b9803ecc8ffdcec965576d8826106c..8377b21b303a0becf5e849c96394dd46a2caa671 100644 (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);
 }