diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2000-09-15 00:44:47 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2000-09-15 00:44:47 +0100 |
commit | d9dbd9b14c46ec13e078e8bdbea29c860d495f1e (patch) | |
tree | 6fd9ccde69efc009a3b86557b5f4f73e73c81275 | |
parent | 9207d3b1d7e6fdcd4ef385b6c4ae80234a1c0f30 (diff) | |
download | gcc-d9dbd9b14c46ec13e078e8bdbea29c860d495f1e.zip gcc-d9dbd9b14c46ec13e078e8bdbea29c860d495f1e.tar.gz gcc-d9dbd9b14c46ec13e078e8bdbea29c860d495f1e.tar.bz2 |
c-parse.in (reswords): Add _Complex.
* c-parse.in (reswords): Add _Complex.
cp:
* lex.c (reswords): Add _Complex.
From-SVN: r36422
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-parse.in | 1 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/lex.c | 1 |
4 files changed, 10 insertions, 0 deletions
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 <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. 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 <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. 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 }, |