blob: ab0014d8f13f3d1bff3b7dcf65a0f5b9206a6a55 [file] [log] [blame]
extern void abort (void);
static struct X { void *a; void *b; } a, b;
void __attribute__((noinline)) foo (void)
{
void *tem = a.b;
a.b = (void *)0;
b.b = tem;
b.a = a.a;
a.a = tem;
}
int main()
{
a.b = &a;
foo ();
if (b.b != &a)
abort ();
return 0;
}