* cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.

From-SVN: r41985
This commit is contained in:
Ira Ruben 2001-05-12 06:36:57 +00:00 committed by Neil Booth
parent 5a0bf1eed1
commit 401deb20e2
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2001-05-11 Ira Ruben <ira@apple.com>
* cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
2001-05-11 Neil Booth <neil@daikokuya.demon.co.uk> 2001-05-11 Neil Booth <neil@daikokuya.demon.co.uk>
* cp-tree.h (finish_label_expr, lookup_label): Delete. * cp-tree.h (finish_label_expr, lookup_label): Delete.

View File

@ -527,10 +527,6 @@ struct tree_srcloc
/* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is read-only. */ /* In a RECORD_TYPE or UNION_TYPE, nonzero if any component is read-only. */
#define C_TYPE_FIELDS_READONLY(type) TYPE_LANG_FLAG_0 (type) #define C_TYPE_FIELDS_READONLY(type) TYPE_LANG_FLAG_0 (type)
/* Record in each node resulting from a binary operator
what operator was specified for it. */
#define C_EXP_ORIGINAL_CODE(exp) ((enum tree_code) TREE_COMPLEXITY (exp))
/* Store a value in that field. */ /* Store a value in that field. */
#define C_SET_EXP_ORIGINAL_CODE(exp, code) \ #define C_SET_EXP_ORIGINAL_CODE(exp, code) \
(TREE_COMPLEXITY (exp) = (int)(code)) (TREE_COMPLEXITY (exp) = (int)(code))