1 /* Verify that overloaded built-ins for vec_eqv with float and
2 double inputs for VSX produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_p8vector_ok } */
6 /* { dg-options "-mpower8-vector -O2" } */
11 test1 (vector
float x
, vector
float y
)
13 return vec_eqv (x
, y
);
17 test2 (vector
double x
, vector
double y
)
19 return vec_eqv (x
, y
);
22 /* { dg-final { scan-assembler-times "xxleqv" 2 } } */