This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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 = {};


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]