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

     1  /* PR tree-optimization/16461  */
     2  
     3  int DVDinput_read(int);
     4  int DVDReadBlocksPath(int offset, int block_count) {
     5      int ret = 0, ret2 = 0;
     6      for (;;) {
     7  	if (offset)
     8  	    ret = DVDinput_read(block_count);
     9  	else 
    10  	    ret2 = DVDinput_read(block_count);
    11  	break;
    12      }
    13      return ret + ret2;
    14  }