diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-14 23:44:47 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-14 23:44:47 +0000 |
commit | 3b4935113cca00ff4d51dd7b15ca01faeef81ef8 (patch) | |
tree | 6fd9ccde69efc009a3b86557b5f4f73e73c81275 /gcc/cp/lex.c | |
parent | 63c0bd8e702ec6d339ec010801cdfc4e331df889 (diff) | |
download | gcc-3b4935113cca00ff4d51dd7b15ca01faeef81ef8.tar.gz |
* c-parse.in (reswords): Add _Complex.
cp:
* lex.c (reswords): Add _Complex.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36422 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r-- | gcc/cp/lex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index c9d56397259..43d70941ec4 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 }, |