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

17 lines
384 B
C
Raw Normal View History

2024-04-01 15:19:46 +00:00
/* Verify that overloaded built-ins for vec_add with float
inputs produce the right results. */
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-maltivec -mno-vsx" } */
#include <altivec.h>
vector float
test1 (vector float x, vector float y)
{
return vec_add (x, y);
}
/* { dg-final { scan-assembler-times "vaddfp" 1 } } */