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 /gcc/cp | |
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
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/lex.c | 1 |
2 files changed, 5 insertions, 0 deletions
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 }, |