2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / verbose-asm.c
blob7d105d31cda9c3887dec46216fe5b87c7f690a2e
1 /* Test whether -fverbose-asm works. */
2 /* { dg-do compile } */
3 /* { dg-options "-fverbose-asm" } */
5 void foo (int *x)
7 (*x)++;
10 int bar (int *y)
12 int a, b;
13 b = 10;
14 a = 26;
15 foo (&a);
16 a += 10;
17 foo (&a);
18 *y--;
19 return b;
22 int
23 main (int argc, char *argv [])
25 bar (&argc);
26 return 0;