aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/alias-10.c
blob: 03956100a2c20f5fddecfa33d1dc6471cbf0276e (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 "-O2 -fdump-tree-optimized" } */

struct {
	int i;
	int x[2];
	int j;
} a;

int foo(int i)
{
	a.i = 1;
	a.j = 2;
	a.x[i] = 0;
	return a.i + a.j;
}

/* { dg-final { scan-tree-dump "return 3;" "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */