modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/960402-1.c (about)

     1  f (signed long long int x)
     2  {
     3    return x > 0xFFFFFFFFLL || x < -0x80000000LL;
     4  }
     5  
     6  main ()
     7  {
     8    if (f (0) != 0)
     9      abort ();
    10    exit (0);
    11  }