OSDN Git Service

2004-05-24 Janis Johnson <janis187@us.ibm.com>
authorjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 May 2004 17:51:15 +0000 (17:51 +0000)
committerjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 May 2004 17:51:15 +0000 (17:51 +0000)
* gcc.dg/altivec-3.c: Move call to altivec_check.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82211 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 667a742..bd68df7 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 d442b22..8377b21 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);
 }