modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/20010723-1.c (about) 1 int 2 test () 3 { 4 int biv,giv; 5 for (biv = 0, giv = 0; giv != 8; biv++) 6 giv = biv*8; 7 return giv; 8 } 9 10 11 main() 12 { 13 if (test () != 8) 14 abort (); 15 exit (0); 16 }