Commit 70ec0b9b by Aldy Hernandez Committed by Aldy Hernandez

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

From-SVN: r48623
parent fa066a23
002-01-07 Aldy Hernandez <aldyh@redhat.com>
* gcc.dg/altivec-4.c: Test altivec predicates.
2002-01-07 Jakub Jelinek <jakub@redhat.com> 2002-01-07 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20020107-1.c: New test. * gcc.c-torture/execute/20020107-1.c: New test.
......
/* { dg-do compile { target powerpc-*-* } } */ /* { dg-do compile { target powerpc-*-* } } */
/* { dg-options "-maltivec -O0 -Wall" } */ /* { dg-options "-maltivec -O0 -Wall" } */
#define vector __attribute__((vector_size(16)))
int __attribute__((mode(V4SI))) x, y; 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 void
b() b()
{ {
__builtin_altivec_vadduwm (x, y); __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);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment