ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/powerpc/fold-vec-logical-eqv-int.c

29 lines
593 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
/* Verify that overloaded built-ins for vec_eqv with int
inputs produce the right results. */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_p8vector_ok } */
/* { dg-options "-mpower8-vector -O2" } */
#include <altivec.h>
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 } } */