aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/aligned-section-anchors-vect-72.c
blob: 873fabe9f5294c7153299e1414d9185687078ff5 (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
/* { dg-do compile } */
/* { dg-require-effective-target section_anchors } */
/* { dg-require-effective-target vect_int } */

#define N 32

/* Clone of section-anchors-vect-70.c having nested struct.  */

struct S
{
  int e[N];
};

static struct A {
  int p1, p2;
  struct S s; 
} a, b, c;

int foo(void)
{
  for (int i = 0; i < N; i++)
    a.s.e[i] = b.s.e[i] + c.s.e[i];

   return a.s.e[0];
}

/* { dg-final { scan-ipa-dump-times "Increasing alignment of decl" 0 "increase_alignment" { target aarch64*-*-* } } } */
/* { dg-final { scan-ipa-dump-times "Increasing alignment of decl" 0 "increase_alignment" { target powerpc64*-*-* } } } */
/* { dg-final { scan-ipa-dump-times "Increasing alignment of decl" 3 "increase_alignment" { target arm*-*-* } } } */