This is the mail archive of the gcc-patches@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]

Re: PATCH: Shrinking C++ front end data structures


On 3/12/07, Dirk Mueller <dmueller@suse.de> wrote:
On Monday, 12. March 2007, Doug Gregor wrote:

> + BOOL_BITFIELD need_pop_function_context;

I think this should be

BOOL_BITFIELD need_pop_function_context : 1;

Yes, you're right. That should free up a bit more memory... I've fixed the other 2 BOOL_BITFIELDS there, also.

> + unsigned returns_value : 1;

Why not using BOOL_BITFIELD here?

They were "int"s before, but there's no reason not to make them BOOL_BITFIELDs now.

Thanks!

 Cheers,
 Doug


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