1 /* Verify that overloaded built-ins for vec_add with float
2 inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_altivec_ok } */
6 /* { dg-options "-maltivec -mno-vsx" } */
11 test1 (vector
float x
, vector
float y
)
13 return vec_add (x
, y
);
16 /* { dg-final { scan-assembler-times "vaddfp" 1 } } */