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[BIB}: Removing the arg_index field from cpp_hashnode


Neil Booth wrote:
Per Bothner wrote:-
+  char directive_index;			/* Index into directive table.
+					   If negative, a NODE_OPERATOR. */
Do we have a problem here if char is unsigned by default?  Sadly I
believe "signed char" is not K&R.
Hm.  Well, it shoudl be an easy fix:

  int directive_index : 8;

I'll check this in after I've re-run the testsuite (with some other
changes as well).
--
	--Per Bothner
per@bothner.com   http://www.bothner.com/per/


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