2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / mword.c
blob873e08868c53bf2325f78764a2aa0880c1e8bb54
1 int
2 foo (a, b)
3 int *a, *b;
5 int x, y;
6 x++;
7 *a = *b;
8 y = *b;
10 if ((int) x)
11 return 1;
12 else
13 return y;
16 foo1 (p)
17 int *p;
19 p[0] = p[1];
20 return p[0];
23 foo2 (p, x)
24 int *p;
26 p[0] = x;
27 return p[0];