re PR tree-optimization/33291 (a+=2; a+=2 not simplified to a+=4; with -O3 ...
[gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / alias-6.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
3
4 struct param { int *a; };
5 void foo(struct param *p);
6 int bar(void)
7 {
8 int a[2];
9 struct param p;
10 a[0] = 1;
11 a[1] = 1;
12 p.a = &a[0];
13 foo(&p);
14 return a[0] + *p.a;
15 }
16
17 /* { dg-final { scan-tree-dump "return \\*p\\.a \\\+ a.0.;" "optimized" } } */
18 /* { dg-final { cleanup-tree-dump "optimized" } } */
19