diff options
author | zlomek <zlomek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-01 05:06:25 +0000 |
---|---|---|
committer | zlomek <zlomek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-01 05:06:25 +0000 |
commit | 734c48bb1a0a3e309ad570e890f15cf2b6e05325 (patch) | |
tree | 5b0d203422dc44311fe3d048d9db6a130f319b7f /gcc/cp/lex.c | |
parent | f9d88e1166427c5a7016a7467568bef80555d081 (diff) | |
download | gcc-734c48bb1a0a3e309ad570e890f15cf2b6e05325.tar.gz |
* c-typeck.c (build_binary_op): Kill BIT_ANDTC_EXPR.
* convert.c (convert_to_integer): Kill BIT_ANDTC_EXPR.
* fold-const.c (int_const_binop): Kill BIT_ANDTC_EXPR.
(fold): Kill BIT_ANDTC_EXPR and label bit_and.
* tree.def (BIT_ANDTC_EXPR): Kill.
* error.c (dump_expr): Kill BIT_ANDTC_EXPR.
* lex.c (init_operators): Kill BIT_ANDTC_EXPR.
* pt.c (tsubst_copy): Kill BIT_ANDTC_EXPR.
* typeck.c (build_binary_op): Kill BIT_ANDTC_EXPR.
(tsubst_copy_and_build): Kill BIT_ANDTC_EXPR.
* com.c (ffecom_overlap_): Kill BIT_ANDTC_EXPR.
(ffecom_tree_canonize_ref_): Kill BIT_ANDTC_EXPR.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70972 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r-- | gcc/cp/lex.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 49b8311bd79..4e602757eed 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -206,7 +206,6 @@ init_operators (void) operator_name_info [(int) ROUND_MOD_EXPR].name = "(round %)"; operator_name_info [(int) ABS_EXPR].name = "abs"; operator_name_info [(int) FFS_EXPR].name = "ffs"; - operator_name_info [(int) BIT_ANDTC_EXPR].name = "&~"; operator_name_info [(int) TRUTH_AND_EXPR].name = "strict &&"; operator_name_info [(int) TRUTH_OR_EXPR].name = "strict ||"; operator_name_info [(int) IN_EXPR].name = "in"; |