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/cp/decl2.c | |
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/cp/decl2.c')
-rw-r--r-- | gcc/cp/decl2.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 2b6bd254e5f..08fd777db39 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -331,10 +331,6 @@ int flag_conserve_space; int flag_access_control = 1; -/* Nonzero if we want to understand the operator names, i.e. 'bitand'. */ - -int flag_operator_names = 1; - /* Nonzero if we want to check the return value of new and avoid calling constructors if it is a null pointer. */ @@ -420,7 +416,6 @@ lang_f_options[] = {"implicit-templates", &flag_implicit_templates, 1}, {"ms-extensions", &flag_ms_extensions, 1}, {"nonansi-builtins", &flag_no_nonansi_builtin, 0}, - {"operator-names", &flag_operator_names, 1}, {"optional-diags", &flag_optional_diags, 1}, {"permissive", &flag_permissive, 1}, {"repo", &flag_use_repository, 1}, |