* testsuite/gcc.dg/altivec-4.c: Test altivec predicates.

From-SVN: r48623
This commit is contained in:
Aldy Hernandez 2002-01-08 04:52:36 +00:00 committed by Aldy Hernandez
parent fa066a2379
commit 70ec0b9b9f
2 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,7 @@
002-01-07 Aldy Hernandez <aldyh@redhat.com>
* gcc.dg/altivec-4.c: Test altivec predicates.
2002-01-07 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20020107-1.c: New test.

View File

@ -1,10 +1,33 @@
/* { dg-do compile { target powerpc-*-* } } */
/* { dg-options "-maltivec -O0 -Wall" } */
#define vector __attribute__((vector_size(16)))
int __attribute__((mode(V4SI))) x, y;
vector int i,j,k;
vector short s,t,u;
vector char c,d,e;
vector float f,g,h;
void
b()
{
__builtin_altivec_vadduwm (x, y);
/* 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);
}