http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58970

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
struct S
{
  struct
  {
    int b:1;
  } mode[1];
};

void
foo (int x, struct S *s)
{
  if (x == -1)
    s->mode[x].b = 0;
}

Reply via email to