This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH][Committed] Fix 35004, grow tree_code to 16 bits.
Eric Botcazou <ebotcazou@adacore.com> writes:
> > If you add more than 2 more tree codes, the compiler will fail in building
> > C++ precompiled header files (but 35004). The root of this is inside of
> > C++, the tree_code was stored in an 8 bit bitfield, but the number of
> > common tree types, plus the C front end tree types plus the C++ front end
> > tree types is now more than 255. This patch fixes that.
>
> Did you get a special clearance from a RM to commit this now? The current
> status of mainline doesn't allow this kind of patch:
> http://gcc.gnu.org/ml/gcc/2008-01/msg00507.html
This does seem like an obvious correctness patch, though.
Ian