Commit 6b7a2613 by Jeff Law

New test (alias problems).

From-SVN: r19594
parent 6b879bcc
static void *self(void *p){ return p; }
int
f()
{
struct { int i; } s, *sp;
int *ip = &s.i;
s.i = 1;
sp = self(&s);
*ip = 0;
return sp->i+1;
}
main()
{
if (f () != 1)
abort ();
else
exit (0);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment