re PR tree-optimization/33291 (a+=2; a+=2 not simplified to a+=4; with -O3 ...
[gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre4.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 int main(int *a, int argc)
4 {
5 int b;
6 int c;
7 int i;
8 int d, e;
9
10 for (i = 0; i < argc; i++)
11 {
12 e = *a;
13 *a = 9;
14 }
15 return d + e;
16 }
17
18 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre" } } */
19 /* { dg-final { cleanup-tree-dump "pre" } } */