Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-ccp-34.c
blobce8f98535bfb3015c99950462cfad4d604b34dfc
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-ccp1" } */
4 int foo (int x)
6 int y = 0;
7 int z = x + 1;
8 return z + y;
11 /* { dg-final { scan-tree-dump-times "\\+" 1 "ccp1" } } */