aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-12.c
blob: 738f45503a5cdda09e9ce63fe6595dbb554ef07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O1 -fno-strict-aliasing -fdump-tree-optimized" } */

struct S
{
  int i;
  int j;
};
union U
{
  struct S a[10];
};
int
foo (union U *u, int n, int i, int j)
{
  u->a[i].i = 123;
  u->a[j].j = j;
  return u->a[i].i;
}
/* { dg-final { scan-tree-dump-times "return 123" 1 "optimized"} } */