2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / mword1.c
blob690703eb8bfd055513bf944a27492426407d8def
1 int
2 foo (a, b)
3 int *a, *b;
5 int x;
6 *a = (*b + 1);
7 x = *b;
8 if ((int) x)
9 return 1;
10 else
11 return 0;