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

24 lines
528 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
/* Verify that overloaded built-ins for vec_sub with float and
double inputs for VSX produce the right results. */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_vsx_ok } */
/* { dg-options "-mvsx" } */
#include <altivec.h>
vector float
test1 (vector float x, vector float y)
{
return vec_sub (x, y);
}
vector double
test2 (vector double x, vector double y)
{
return vec_sub (x, y);
}
/* { dg-final { scan-assembler-times "xvsubsp" 1 } } */
/* { dg-final { scan-assembler-times "xvsubdp" 1 } } */