aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/bb-slp-36.c
blob: f424d12835302e81a681cd8bf18cd653abc28c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* { dg-require-effective-target vect_int } */

#include "tree-vect.h"

extern void abort (void);

int a[8], b[8];

void __attribute__((noinline,noclone))
foo(void)
{
  a[0] = b[0];
  a[1] = b[0];
  a[2] = b[3];
  a[3] = b[3];
  a[4] = b[4];
  a[5] = b[7];
  a[6] = b[4];
  a[7] = b[7];
}

int main()
{
  int i;
  check_vect ();
  for (i = 0; i < 8; ++i)
    b[i] = i;
  foo ();
  if (a[0] != 0 || a[1] != 0 || a[2] != 3 || a[3] != 3
      || a[4] != 4 || a[5] != 7 || a[6] != 4 || a[7] != 7)
    abort ();
  return 0;
}

/* { dg-final { scan-tree-dump "basic block vectorized" "slp2" { target vect_perm } } } */