1static void
2compare (long long foo)
3{
4  if (foo < 4294967297LL)
5    abort();
6}
7int main(void)
8{
9  compare (8589934591LL);
10  exit (0);
11}
12