aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr69999.c
blob: 5659ce48a17adf3cf584837fa46e2c746d1e15fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int uh;

void
ha(void)
{
  while (uh) {
    for (uh = 0; uh < 1; ++uh) {
      uh = 0;
      if (uh != 0)
 ts:
        uh %= uh;
    }
    ++uh;
  }
  goto ts;
}