diff options
| author | Ian Lance Taylor <ian@airs.com> | 2005-04-25 19:03:41 +0000 |
|---|---|---|
| committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2005-04-25 19:03:41 +0000 |
| commit | 934790cc6719ae6f0d6a7f408cedba1acab9f93d (patch) | |
| tree | 04c6f7b2baf3f9d03ae1167e9d3db012d53a4e00 /gcc/cp/cp-tree.h | |
| parent | eca5a6a939732c946f3ade566ae1dd4f3def37c3 (diff) | |
| download | gcc-934790cc6719ae6f0d6a7f408cedba1acab9f93d.zip gcc-934790cc6719ae6f0d6a7f408cedba1acab9f93d.tar.gz gcc-934790cc6719ae6f0d6a7f408cedba1acab9f93d.tar.bz2 | |
c-common.def (EXPR_STMT): Remove, moved to C++ frontend.
./ * c-common.def (EXPR_STMT): Remove, moved to C++ frontend.
* c-common.h (EXPR_STMT_EXPR): Don't define.
(c_common_stmt_codes): Don't define.
* c-dump.c (c_dump_tree): Remove EXPR_STMT case.
* c-gimplify.c (gimplify_expr_stmt): Remove.
(c_gimplify_expr): Remove EXPR_STMT case.
* c-objc-common.c (c_objc_common_init): Remove stmt_codes and call
to INIT_STATEMENT_CODES.
* c-pretty-print.c (pp_c_statement): Just call dump_generic_node.
cp/
* cp-tree.def: Add EXPR_STMT.
* cp-tree.h (cp_stmt_codes): Add EXPR_STMT.
(EXPR_STMT_EXPR): Define.
* cp-gimplify.c: Include "flags.h".
(gimplify_expr_stmt): New static function.
(cp_gimplify_expr): Handle EXPR_STMT.
* cxx-pretty-print.c (pp_cxx_statement): Use pp_cxx_expression
rather than pp_expression.
(pp_cxx_statement): Handle EXPR_STMT.
* dump.c (cp_dump_tree): Handle EXPR_STMT.
* lex.c (cxx_init): Don't use c_common_stmt_codes in stmt_codes
initializer.
From-SVN: r98731
Diffstat (limited to 'gcc/cp/cp-tree.h')
| -rw-r--r-- | gcc/cp/cp-tree.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index aba46f4..05b28dd 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -852,7 +852,7 @@ enum cplus_tree_code { EH_SPEC_BLOCK, USING_STMT, TAG_DEFN, \ IF_STMT, CLEANUP_STMT, FOR_STMT, \ WHILE_STMT, DO_STMT, BREAK_STMT, \ - CONTINUE_STMT, SWITCH_STMT + CONTINUE_STMT, SWITCH_STMT, EXPR_STMT enum languages { lang_c, lang_cplusplus, lang_java }; /* Macros to make error reporting functions' lives easier. */ @@ -2949,6 +2949,10 @@ struct lang_decl GTY(()) /* STMT_EXPR accessor. */ #define STMT_EXPR_STMT(NODE) TREE_OPERAND (STMT_EXPR_CHECK (NODE), 0) +/* EXPR_STMT accessor. This gives the expression associated with an + expression statement. */ +#define EXPR_STMT_EXPR(NODE) TREE_OPERAND (EXPR_STMT_CHECK (NODE), 0) + /* An enumeration of the kind of tags that C++ accepts. */ enum tag_types { none_type = 0, /* Not a tag type. */ |
