23 lines
490 B
C
23 lines
490 B
C
/* Verify that overloaded built-ins for vec_eqv with float and
|
|
double inputs for VSX produce the right results. */
|
|
|
|
/* { dg-do compile } */
|
|
/* { dg-require-effective-target powerpc_p8vector_ok } */
|
|
/* { dg-options "-mpower8-vector -O2" } */
|
|
|
|
#include <altivec.h>
|
|
|
|
vector float
|
|
test1 (vector float x, vector float y)
|
|
{
|
|
return vec_eqv (x, y);
|
|
}
|
|
|
|
vector double
|
|
test2 (vector double x, vector double y)
|
|
{
|
|
return vec_eqv (x, y);
|
|
}
|
|
|
|
/* { dg-final { scan-assembler-times "xxleqv" 2 } } */
|