On Sep 6, 2005, at 8:21 AM, Steven Bosscher wrote:
Hi,
Consider this little snippet:
====================================
int x;
int
foo (int a)
{
x = a;
return x + 3;
}
====================================
Likewise for:
int
foo (int a, int *x)
{
*x = a;
return *x + 3;
}
-- Pinski
