aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr87640.c
blob: 09bd3b42f344626eae9c30ab78108f29278e8304 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */

int main ()
{ 
  unsigned b = 0;
  int c, d = -8;
  for (; b < 2; b++)
    for (c = 1; c; c--)
      d++;
  return 0;
}