This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH]: Trying to make list nodes smaller, but the C++ FE keeps beating me down
- From: Mike Stump <mrs at apple dot com>
- To: Daniel Berlin <dberlin at dberlin dot org>
- Cc: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Sun, 15 May 2005 11:20:11 -0700
- Subject: Re: [PATCH]: Trying to make list nodes smaller, but the C++ FE keeps beating me down
On Saturday, May 14, 2005, at 08:41 PM, Daniel Berlin wrote:
It removes the TREE_TYPE field from TREE_LIST,
This is just hard. Better to not use TREE_LIST, which is a TREE, which
is defined to have a type, and instead retype it to be a LIST, and then
fixup all the code so that it uses the hard type instead. After
converting all the code, I suspect TREE_LIST could just go away
entirely.