altivec-pr22085.c   [plain text]


/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-maltivec -fpreprocessed" } */

/* Program to test AltiVec with -fpreprocessed.  */
int foo(__attribute__((altivec(vector__))) float x,
        __attribute__((altivec(vector__))) float y)
{
  if (__builtin_vec_vcmpeq_p (2, (x), (y)))
    return 3245;
  else
    return 12;
}