re PR tree-optimization/33291 (a+=2; a+=2 not simplified to a+=4; with -O3 ...
[gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21574.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-store_ccp" } */
3
4 int
5 foo (int *p)
6 {
7 *p = 0;
8 return *p;
9 }
10
11 /* The store to *p should be propagated to the return statement. */
12 /* { dg-final { scan-tree-dump-times "return 0" 1 "store_ccp" } } */
13 /* { dg-final { cleanup-tree-dump "store_ccp" } } */