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

Bence Szabó <sbence92 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sbence92 at gmail dot com

--- Comment #2 from Bence Szabó <sbence92 at gmail dot com> ---
A variant of the is still an issue even with GCC 11.

The below is a reduced version of a file that took 33 minutes(!) to compile,
cc1 starting from 1GB of memory usage, reaching 2GB eventually.
This example generates 10MB of assembly as it unrolls the constructor calls
even with O0.

struct B
{
   B() {}
};

struct A
{

   B b[128][1875];
};

A a{};


I've tried to find a similar PR, this was the closest one.
Is this a known issue?

Reply via email to