Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / tree-ssa / pr21574.c
blob6e3a5fb2ec44ee87a0177f29f495b2ee341c09e6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-store_ccp" } */
4 int
5 foo (int *p)
7 *p = 0;
8 return *p;
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" } } */