1 /* PR target/84860 */
2 
3 void
foo(int x,int y)4 foo (int x, int y)
5 {
6   while (x < 1)
7     {
8       x = y;
9       y = ((float)1 / 0) ? 2 : 0;
10     }
11 }
12