blob: a7b81bbad565ab5cdfc393bb24b4c7a19dd23eef [file] [log] [blame]
/* { 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;
}