ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/powerpc/fold-vec-mergehl-double.c

24 lines
498 B
C

/* Verify that overloaded built-ins for vec_splat with float and
double inputs produce the right code. */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_vsx_ok } */
/* { dg-options "-mvsx -O2" } */
#include <altivec.h>
vector double
testd_l (vector double vd2, vector double vd3)
{
return vec_mergel (vd2, vd3);
}
vector double
testd_h (vector double vd2, vector double vd3)
{
return vec_mergeh (vd2, vd3);
}
/* { dg-final { scan-assembler-times "xxpermdi" 2 } } */