Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp74.c
blobb15186fea0ba045179d54a23e6fc01f9394ccdc4
1 /* { dg-options "-O2" } */
3 void abort (void);
4 void exit (int);
6 __attribute__ ((noinline)) void
7 f (unsigned long long i)
9 if (i <= 0x1000000000000000ull)
11 unsigned long long j = i | 0x1000000000000000ull;
12 if (j == 0x1100000000000000ull)
13 exit (0);
17 int
18 main ()
20 f (0x0100000000000000ull);
21 abort ();