modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/divconst-3.c (about)

     1  long long
     2  f (long long x)
     3  {
     4    return x / 10000000000LL;
     5  }
     6  
     7  main ()
     8  {
     9    if (f (10000000000LL) != 1 || f (100000000000LL) != 10)
    10      abort ();
    11    exit (0);
    12  }