aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/altivec-perm-2.c
blob: 1b90bb9567cbc01510c092f92a04772c97302e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-O -maltivec -mno-vsx" } */

typedef unsigned short V __attribute__((vector_size(16)));

V f2(V x)
{
  return __builtin_shuffle(x, (V){ 1,1,1,1, 1,1,1,1, });
}

V f4(V x)
{
  return __builtin_shuffle(x, (V){ 2,3,2,3, 2,3,2,3, });
}

/* { dg-final { scan-assembler-not "vperm" } } */
/* { dg-final { scan-assembler "vsplth" } } */
/* { dg-final { scan-assembler "vspltw" } } */