https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97732

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Cleaned up testcase:
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;
}

Reply via email to