OSDN Git Service

* gcc.c-torture/execute/20040208-2.c: Move ...
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 950906-1.c
1 g (int i)
2 {
3 }
4
5 f (int i)
6 {
7   g (0);
8   while ( ({ i--; }) )
9     g (0);
10 }
11
12 main ()
13 {
14   f (10);
15   exit (0);
16 }