modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/991202-2.c (about) 1 2 int 3 f1 () 4 { 5 unsigned long x, y = 1; 6 7 x = ((y * 8192) - 216) % 16; 8 return x; 9 } 10 11 int 12 main () 13 { 14 if (f1 () != 8) 15 abort (); 16 exit (0); 17 }