2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20010118-1.c
blob6d1fc6431c6f200440f181e2c458322883ceb0f7
1 static unsigned int bar(void *h, unsigned int n)
3 static int i;
4 return i++;
7 static void baz(unsigned int *x)
9 (*x)++;
12 long
13 foo(void *h, unsigned int l)
15 unsigned int n;
16 long m;
17 n = bar(h, 0);
18 n = bar(h, n);
19 m = ({ baz(&n); 21; });
20 return m;