14 lines
345 B
C
14 lines
345 B
C
/* { dg-do compile } */
|
|
/* { dg-require-effective-target powerpc_altivec_ok } */
|
|
/* { dg-options "-O -maltivec -mno-vsx" } */
|
|
|
|
typedef unsigned int V __attribute__((vector_size(16)));
|
|
|
|
V f4(V x)
|
|
{
|
|
return __builtin_shuffle(x, (V){ 1,1,1,1, });
|
|
}
|
|
|
|
/* { dg-final { scan-assembler-not "vperm" } } */
|
|
/* { dg-final { scan-assembler "vspltw" } } */
|