c-parse.in (reswords): Add _Complex.

* c-parse.in (reswords): Add _Complex.

cp:
	* lex.c (reswords): Add _Complex.

From-SVN: r36422
This commit is contained in:
Joseph Myers 2000-09-15 00:44:47 +01:00 committed by Joseph Myers
parent 9207d3b1d7
commit d9dbd9b14c
4 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-09-14 Joseph S. Myers <jsm28@cam.ac.uk>
* c-parse.in (reswords): Add _Complex.
2000-09-14 J. David Anglin <dave@hiauly1.hia.nrc.ca>
* gcc.1: Delete documentation for -undef preprocessor option.

View File

@ -2817,6 +2817,7 @@ struct resword
static const struct resword reswords[] =
{
{ "_Complex", RID_COMPLEX, 0 },
{ "__alignof", RID_ALIGNOF, 0 },
{ "__alignof__", RID_ALIGNOF, 0 },
{ "__asm", RID_ASM, 0 },

View File

@ -1,3 +1,7 @@
2000-09-14 Joseph S. Myers <jsm28@cam.ac.uk>
* lex.c (reswords): Add _Complex.
Thu Sep 14 12:10:45 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* Make-lang.in (cplib2.txt): Depend on cp/Makefile.

View File

@ -414,6 +414,7 @@ CONSTRAINT(ridbits_fit, RID_LAST_MODIFIER < sizeof(unsigned long) * CHAR_BIT);
static const struct resword reswords[] =
{
{ "_Complex", RID_COMPLEX, 0 },
{ "__alignof", RID_ALIGNOF, 0 },
{ "__alignof__", RID_ALIGNOF, 0 },
{ "__asm", RID_ASM, 0 },