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