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

38 lines
823 B
C
Raw Normal View History

2024-04-01 15:19:46 +00:00
/* Verify that overloaded built-ins for vec_max with float and
double inputs for VSX produce the right results. */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_vsx_ok } */
/* { dg-options "-mvsx -O2" } */
#include <altivec.h>
vector float
test1_min (vector float x, vector float y)
{
return vec_min (x, y);
}
vector double
test2_min (vector double x, vector double y)
{
return vec_min (x, y);
}
vector float
test1_max (vector float x, vector float y)
{
return vec_max (x, y);
}
vector double
test2_max (vector double x, vector double y)
{
return vec_max (x, y);
}
/* { dg-final { scan-assembler-times "vminsp" 1 } } */
/* { dg-final { scan-assembler-times "vmindp" 1 } } */
/* { dg-final { scan-assembler-times "vmaxsp" 1 } } */
/* { dg-final { scan-assembler-times "vmaxdp" 1 } } */