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

     1  /* PR87473: SLSR ICE on hidden basis with |increment| > 1.  */
     2  /* { dg-additional-options "-fno-tree-ch" } */
     3  
     4  void
     5  t6 (int qz, int wh)
     6  {
     7    int jl = wh;
     8  
     9    while (1.0 / 0 < 1)
    10      {
    11        qz = wh * (wh + 2);
    12  
    13        while (wh < 1)
    14          jl = 0;
    15      }
    16  
    17    while (qz < 1)
    18      qz = jl * wh;
    19  }