[Bug c++/61592] New: ICE with large array with initialization

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Tue Jun 24 15:57:00 GMT 2014


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

            Bug ID: 61592
           Summary: ICE with large array with initialization
           Product: gcc
           Version: 4.9.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jakub at gcc dot gnu.org

Another testcase similar to PR59659, on which we ICE because of too deep stack
recursion and which should be hopefully fixed with RANGE_EXPRs
struct A { A (); ~A (); int a; };
struct B { A a[200]; };
struct C { B b[200][10]; };
const C c = {};



More information about the Gcc-bugs mailing list