Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / alias-4.c
blobe0394327d91e92fcb6b1a9489d57129c76bb6f74
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 struct {
5 int i;
6 struct {
7 int x[2];
8 } b;
9 } a;
11 int foo(void)
13 a.i = 1;
14 a.b.x[0] = 0;
15 a.b.x[1] = 1;
16 return a.i + a.b.x[0];
19 /* { dg-final { scan-tree-dump "return 1;" "optimized" } } */
20 /* { dg-final { cleanup-tree-dump "optimized" } } */