aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr78610.c
blob: 0415ae6d9dfff1e541513dfbd0e2f0569fc9edbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR rtl-optimization/78610 */

unsigned int ao, gl;

void
ri (void)
{
  for (;;)
    {
      if (ao != 1)
        ao /= 0;
      gl = 0;
    }
}