[Bug c++/16269] g++ doesn't reuse stack space
--- Comment #4 from pinskia at gcc dot gnu dot org 2009-04-22 21:12 --- This has been fixed for awhile now, since at least 4.3.0. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---
[Bug c++/16269] g++ doesn't reuse stack space
--- Comment #3 from jason at gcc dot gnu dot org 2006-09-06 20:56 --- This isn't only a problem in C++. In this C testcase: struct A { int i[42]; }; struct A f(); int main() { f(); f(); f(); } we allocate 3 'struct A' temporaries. -- jason at gcc dot gnu dot org changed: