[Bug target/60193] [4.7.4/4.8/4.9 regression] ICE on big nested frame

ebotcazou at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Fri Feb 14 10:00:00 GMT 2014


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

--- Comment #3 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
Sorry, minor pilot error, try with:

void foo (int i)
{
  void nested (void)
  {
    char arr[(1U << 31) + 4];
    arr[i] = 0;
  }

  nested ();
}



More information about the Gcc-bugs mailing list