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

     1  extern void abort (void);
     2  
     3  unsigned int test (unsigned int x)
     4  {
     5    return x / 0x80000001U / 0x00000002U;
     6  }
     7  
     8  int main()
     9  {
    10    if (test(2) != 0)
    11      abort ();
    12    return 0;
    13  }