doc: add missing @option for musttail
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920520-1.c
blobf8266f2d32e1de8049a6f56601a36255f0b0687a
1 /* { dg-additional-options "-std=gnu89" } */
3 foo(int *bar)
5 *bar = 8;
8 bugger()
10 int oldDepth, newDepth;
12 foo(&oldDepth);
14 switch (oldDepth)
16 case 8:
17 case 500:
18 newDepth = 8;
19 break;
21 case 5000:
22 newDepth = 500;
23 break;
25 default:
26 newDepth = 17;
27 break;
30 return newDepth - oldDepth;
33 main()
35 if (bugger() != 0)
36 abort ();
37 exit (0);