From: Joseph Myers Date: Thu, 14 Sep 2000 23:44:47 +0000 (+0100) Subject: c-parse.in (reswords): Add _Complex. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9dbd9b14c46ec13e078e8bdbea29c860d495f1e;p=platform%2Fupstream%2Fgcc.git c-parse.in (reswords): Add _Complex. * c-parse.in (reswords): Add _Complex. cp: * lex.c (reswords): Add _Complex. From-SVN: r36422 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6328fbe..8cf66c1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-09-14 Joseph S. Myers + + * c-parse.in (reswords): Add _Complex. + 2000-09-14 J. David Anglin * gcc.1: Delete documentation for -undef preprocessor option. diff --git a/gcc/c-parse.in b/gcc/c-parse.in index bd9e652..7f0fbd5 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -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 }, diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1eecfdd..f54d9b3 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2000-09-14 Joseph S. Myers + + * lex.c (reswords): Add _Complex. + Thu Sep 14 12:10:45 2000 Richard Kenner * Make-lang.in (cplib2.txt): Depend on cp/Makefile. diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index c9d5639..43d7094 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -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 },