diff options
author | Richard Henderson <rth@redhat.com> | 2004-06-20 02:18:13 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-06-20 02:18:13 -0700 |
commit | 5a5086621e8751f9666cf0a3d5956149202e1487 (patch) | |
tree | 5f34633f30f7aaefd64e454886114b31df3b8155 /gcc/tree.h | |
parent | 500e12641f0f7fb4fde1221f7f8052ef351de5f7 (diff) | |
download | gcc-5a5086621e8751f9666cf0a3d5956149202e1487.zip gcc-5a5086621e8751f9666cf0a3d5956149202e1487.tar.gz gcc-5a5086621e8751f9666cf0a3d5956149202e1487.tar.bz2 |
c-common.def (IF_STMT, [...]): Move to cp-tree.def.
* c-common.def (IF_STMT, CLEANUP_STMT): Move to cp-tree.def.
* c-common.h (IF_COND, THEN_CLAUSE, ELSE_CLAUSE, CLEANUP_BODY,
CLEANUP_EXPR, CLEANUP_DECL): Move to cp-tree.h.
(c_common_stmt_codes): Remove IF_STMT, CLEANUP_STMT.
* c-dump.c (c_dump_tree): Move IF_STMT, CLEANUP_STMT to cp_dump_tree.
* c-pretty-print.c (pp_c_statement): Similarly.
* c-gimplify.c (gimplify_cleanup_stmt, gimplify_cleanup_stmts,
gimplify_if_stmt): Move to cp-gimplify.c.
(c_genericize, c_gimplify_expr): Don't call them.
* c-semantics.c (push_cleanup): Move to cp/semantics.c.
* c-typeck.c (push_cleanup): New.
(c_begin_if_stmt, c_finish_if_cond, c_finish_then, c_finish_else,
c_finish_if_stmt): Use COND_EXPR.
* tree.h (CLEANUP_EH_ONLY): Update documentation.
cp/
* cp-tree.def (CLEANUP_STMT, IF_STMT): Move from c-common.def.
* cp-gimplify.c (gimplify_if_stmt): Move from c-gimplify.c.
(cp_gimplify_expr): Call it.
(gimplify_cleanup_stmt): Move from c-gimplify.c.
(cp_genericize): New.
* decl.c (finish_function): Call it.
* cp-tree.h (cp_stmt_codes): Add CLEANUP_STMT, IF_STMT.
(CLEANUP_BODY, CLEANUP_EXPR, CLEANUP_DECL): Move from c-common.h.
(IF_COND, THEN_CLAUSE, ELSE_CLAUSE): Likewise.
(cp_genericize): Declare.
* cxx-pretty-print.c (pp_cxx_statement): Add CLEANUP_STMT, IF_STMT.
* dump.c (cp_dump_tree): Likewise.
* semantics.c (push_cleanup): Move from c-semantics.c.
From-SVN: r83407
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -209,8 +209,7 @@ struct tree_common GTY(()) TREE_SYMBOL_REFERENCED in IDENTIFIER_NODE CLEANUP_EH_ONLY in - TARGET_EXPR, WITH_CLEANUP_EXPR, CLEANUP_STMT, - TREE_LIST elements of a block's cleanup list. + TARGET_EXPR, WITH_CLEANUP_EXPR ASM_INPUT_P in ASM_EXPR EH_FILTER_MUST_NOT_THROW in EH_FILTER_EXPR @@ -690,9 +689,9 @@ extern void tree_operand_check_failed (int, enum tree_code, should be cleaned up some day. */ #define TREE_STATIC(NODE) ((NODE)->common.static_flag) -/* In a TARGET_EXPR, WITH_CLEANUP_EXPR, CLEANUP_STMT, or element of a - block's cleanup list, means that the pertinent cleanup should only be - executed if an exception is thrown, not on normal exit of its scope. */ +/* In a TARGET_EXPR, WITH_CLEANUP_EXPR, means that the pertinent cleanup + should only be executed if an exception is thrown, not on normal exit + of its scope. */ #define CLEANUP_EH_ONLY(NODE) ((NODE)->common.static_flag) /* In an expr node (usually a conversion) this means the node was made |