* gcc.target/powerpc/builtins-1-be.c <vclzb>: Rename duplicate test
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / altivec-33.c
blob8e912679d2f879abde250d4ab25fa526dc428817
1 /* { dg-do compile } */
2 /* { dg-require-effective-target powerpc_altivec_ok } */
3 /* { dg-options "-O2 -maltivec -mno-vsx" } */
5 /* We should only produce one vspltw as we already splatted the value. */
6 /* { dg-final { scan-assembler-times "vspltw" 1 } } */
8 #include <altivec.h>
10 vector float f(vector float a)
12 vector float b = vec_splat (a, 2);
13 return vec_splat (b, 0);