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/13737] [3.3/3.4/3.5 Regression] gcc.c-torture/compile/20001226-1.c requires far too much memory


------- Additional Comments From mmitchel at gcc dot gnu dot org  2004-03-21 18:10 -------
It's not surprising this takes more memory than GCC 2.95.3.

There's a very big function in this file, and GCC is now function-at-a-time,
meaning that we build a representation for the entire function in memory, rather
than compiling it one line at a time.  That's not to say some improvements could
not be made, but this is a conscious design change.  An increase in memory is
inevitable in light of function-at-a-time.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13737


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