Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21574.c
blobfc33d74e9ffeaf4a44592e4cc7aae374347ecf11
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre-details" } */
4 int
5 foo (int *p)
7 *p = 0;
8 return *p;
11 /* The store to *p should be propagated to the load statement. */
12 /* { dg-final { scan-tree-dump "Replaced \\\*p_.\\\(D\\\) with 0" "fre" } } */
13 /* { dg-final { cleanup-tree-dump "fre" } } */