This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/61592] New: ICE with large array with initialization
- From: "jakub at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Tue, 24 Jun 2014 15:57:40 +0000
- Subject: [Bug c++/61592] New: ICE with large array with initialization
- Auto-submitted: auto-generated
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 = {};