blob: 5187090797d683f9c212e59338bd42680b0f258e [file] [log] [blame]
/* { dg-do compile } */
struct S { int a, b; } *e;
int d;
void
foo (struct S *x)
{
for (e = x; d; d++, e++)
e->a = e->b = (int) (__UINTPTR_TYPE__) e;
}