1 /* PR87473: SLSR ICE on hidden basis with |increment| > 1.  */
2 /* { dg-additional-options "-fno-tree-ch" } */
3 
4 void
t6(int qz,int wh)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 }
20