Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp37.c
blobfba35a48bbfc4f33392fc84303f0416ad325a7e7
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 unsigned char x;
5 int foo(void)
7 unsigned long long i = x;
8 i = i + 0x80000000;
9 if (i > 0xffffffff)
10 return x;
11 return 0;