2002-02-05 Aldy Hernandez <aldyh@redhat.com>
authoraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Feb 2002 08:12:31 +0000 (08:12 +0000)
committeraldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Feb 2002 08:12:31 +0000 (08:12 +0000)
        * gcc.dg/altivec-4.c: AltiVec builtin predicates changed format.
        Fix testcase accordingly.

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

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

index a896736..ed43a3a 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
+
+        * gcc.dg/altivec-4.c: AltiVec builtin predicates changed format.
+        Fix testcase accordingly.
+
 2002-02-04  Richard Henderson  <rth@redhat.com>
 
        * gcc.c-torture/execute/built-in-setjmp.c: Prototype stuff.
index 857625b..244e31b 100644 (file)
@@ -5,7 +5,7 @@
 
 static int __attribute__((mode(V4SI))) x, y;
 
-static vector signed int i,j,k;
+static vector signed int i,j;
 static vector signed short s,t;
 static vector signed char c,d;
 static vector float f,g;
@@ -23,19 +23,19 @@ b()
 
   /* Make sure the predicates accept correct argument types.  */
   
-  k = __builtin_altivec_vcmpbfp_p (f, g);
-  k = __builtin_altivec_vcmpeqfp_p (f, g);
-  k = __builtin_altivec_vcmpequb_p (c, d);
-  k = __builtin_altivec_vcmpequh_p (s, t);
-  k = __builtin_altivec_vcmpequw_p (i, j);
-  k = __builtin_altivec_vcmpgefp_p (f, g);
-  k = __builtin_altivec_vcmpgtfp_p (f, g);
-  k = __builtin_altivec_vcmpgtsb_p (c, d);
-  k = __builtin_altivec_vcmpgtsh_p (s, t);
-  k = __builtin_altivec_vcmpgtsw_p (i, j);
-  k = __builtin_altivec_vcmpgtub_p (c, d);
-  k = __builtin_altivec_vcmpgtuh_p (s, t);
-  k = __builtin_altivec_vcmpgtuw_p (i, j);
+  int1 = __builtin_altivec_vcmpbfp_p (0, f, g);
+  int1 = __builtin_altivec_vcmpeqfp_p (0, f, g);
+  int1 = __builtin_altivec_vcmpequb_p (0, c, d);
+  int1 = __builtin_altivec_vcmpequh_p (0, s, t);
+  int1 = __builtin_altivec_vcmpequw_p (0, i, j);
+  int1 = __builtin_altivec_vcmpgefp_p (0, f, g);
+  int1 = __builtin_altivec_vcmpgtfp_p (0, f, g);
+  int1 = __builtin_altivec_vcmpgtsb_p (0, c, d);
+  int1 = __builtin_altivec_vcmpgtsh_p (0, s, t);
+  int1 = __builtin_altivec_vcmpgtsw_p (0, i, j);
+  int1 = __builtin_altivec_vcmpgtub_p (0, c, d);
+  int1 = __builtin_altivec_vcmpgtuh_p (0, s, t);
+  int1 = __builtin_altivec_vcmpgtuw_p (0, i, j);
 
   __builtin_altivec_mtvscr (i);
   __builtin_altivec_dssall ();