aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/950906-1.c
blob: 31997d5c25745d5a7b6a6925e29cb01107994cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
g (int i)
{
}

f (int i)
{
  g (0);
  while ( ({ i--; }) )
    g (0);
}

main ()
{
  f (10);
  exit (0);
}