Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / alias-3.c
blob03892a307862e4d65b4aa92d66fe3846f3f9b70d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 struct {
5 int i;
6 int j;
7 int x[2];
8 } a;
10 int foo(void)
12 a.i = 1;
13 a.j = 0;
14 a.x[0] = 0;
15 return a.i + a.j;
18 /* { dg-final { scan-tree-dump "return 1;" "optimized" } } */