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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|needs-reduction             |

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:

int a;
void b(c, d, e, f, g, h) char *c;
int d;
int e;
int f;
int g;
int h;
{
  int i;
  c++;
  c++;
  c++;
  c++;
  i = 0;
  for (; i < 10; i++)
    a = *c++ = 2;
}

Reply via email to