OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 930406-1.c
1 f()
2 {
3   int x = 1;
4 #if defined(STACK_SIZE)
5   char big[STACK_SIZE/2];
6 #else
7   char big[0x1000];
8 #endif
9
10   ({
11     __label__ mylabel;
12   mylabel:
13     x++;
14     if (x != 3)
15       goto mylabel;
16   });
17   exit(0);
18 }
19
20 main()
21 {
22   f();
23 }