Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21574.c
blobc4158f73a2aa8fe40000ed3b583910b085b25a6c
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1-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" "fre1" } } */