Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / 930406-1.c
blob9728eabd7eda436ba5c7f83183f5ac5fffe00f08
1 f()
3 int x = 1;
4 #if defined(STACK_SIZE)
5 char big[STACK_SIZE/2];
6 #else
7 char big[0x1000];
8 #endif
11 __label__ mylabel;
12 mylabel:
13 x++;
14 if (x != 3)
15 goto mylabel;
16 });
17 exit(0);
20 main()
22 f();