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]

forgotten C/OBJ parser update breaks cc1obj



The following change:

1999-12-17 13:21 -0800  Zack Weinberg  <zack@rabi.columbia.edu>

 ...

	* c-parse.in (string action): Do not warn about ANSI string
	concatenation in system headers.  Affects C parser only.
	* c-parse.y, c-parse.c, c-parse.h: Rebuild.

Indicates that only the C parser should be rebuilt, this is completely
wrong because objc is now expecting different identifier codes than
what the rest of the C front-end it shares does.  For example:

? egrep PLUSPLUS c-parse.c objc/objc-parse.c | grep define
c-parse.c:#define	PLUSPLUS	299
objc/objc-parse.c:#define	PLUSPLUS	300
?

Please fix this and in the future rebuild all files dependant upon
c-parse.y when you change it.  Thanks.

Later,
David S. Miller
davem@redhat.com


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