* gcc.target/powerpc/builtins-1-be.c <vclzb>: Rename duplicate test
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / fold-vec-mult-float.c
blob46afc6855700c60daa94c92a14200308f062ea1f
1 /* Verify that overloaded built-ins for vec_mul with float
2 inputs produce the right results. */
4 /* { dg-do compile } */
5 /* { dg-require-effective-target powerpc_vsx_ok } */
6 /* { dg-options "-mvsx -O2" } */
8 #include <altivec.h>
10 vector float
11 test1 (vector float x, vector float y)
13 return vec_mul (x, y);
16 /* { dg-final { scan-assembler-times "\[ \t\]xvmulsp" 1 } } */