/* Verify that overloaded built-ins for vec_eqv with int inputs produce the right results. */ /* { dg-do compile } */ /* { dg-options "-mvsx -O2" } */ /* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */ /* { dg-require-effective-target powerpc_vsx } */ #include vector bool int test1 (vector bool int x, vector bool int y) { return vec_eqv (x, y); } vector signed int test3 (vector signed int x, vector signed int y) { return vec_eqv (x, y); } vector unsigned int test6 (vector unsigned int x, vector unsigned int y) { return vec_eqv (x, y); } /* { dg-final { scan-assembler-times "xxleqv" 3 } } */