diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-26 16:23:07 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-26 16:23:07 +0000 |
commit | 5610f3adad7123c25e5470d8f5719dad3ecbd196 (patch) | |
tree | 982f30a0b8e6cf553bcaa41866622680f8adad6e /gcc/c-common.h | |
parent | d571f56fc629f19ecd0da572f25d1ea1eb74ebad (diff) | |
download | gcc-5610f3adad7123c25e5470d8f5719dad3ecbd196.tar.gz |
* c-common.h (RID_AND, RID_AND_EQ, RID_NOT, RID_NOT_EQ,
RID_OR, RID_OR_EQ, RID_XOR, RID_XOR_EQ, RID_BITAND, RID_BITOR,
RID_COMPL): Remove.
* c-parse.in (rid_to_yy): Similarly.
cp:
* cp-tree.h (flag_operator_names): Remove.
* decl2.c (flag_operator_names): Remove.
(lang_f_options): Remove operator-names.
* lex.c (D_OPNAME): Remove.
(reswords): Remove operator names.
(rid_to_yy): Remove operator names.
(init_reswords): No need to handle D_OPNAME.
* spew.c (read_process_identifier): There are no operator
names.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55777 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index abdd859c54e..f7191fa6c7f 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -93,11 +93,6 @@ enum rid /* casts */ RID_CONSTCAST, RID_DYNCAST, RID_REINTCAST, RID_STATCAST, - /* alternate spellings */ - RID_AND, RID_AND_EQ, RID_NOT, RID_NOT_EQ, - RID_OR, RID_OR_EQ, RID_XOR, RID_XOR_EQ, - RID_BITAND, RID_BITOR, RID_COMPL, - /* Objective C */ RID_ID, RID_AT_ENCODE, RID_AT_END, RID_AT_CLASS, RID_AT_ALIAS, RID_AT_DEFS, |