doc: add missing @option for musttail
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930518-1.c
blob0cf989cd67da1ba2de2a1fa5b7eaf6cb5f65d574
1 /* { dg-additional-options "-std=gnu89" } */
3 int bar = 0;
5 f (p)
6 int *p;
8 int foo = 2;
10 while (foo > bar)
12 foo -= bar;
13 *p++ = foo;
14 bar = 1;
18 main ()
20 int tab[2];
21 tab[0] = tab[1] = 0;
22 f (tab);
23 if (tab[0] != 2 || tab[1] != 1)
24 abort ();
25 exit (0);