diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-28 01:38:11 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-28 01:38:11 +0000 |
commit | d17251207d3e29ea9c232fb839e753d42239f083 (patch) | |
tree | fd13f92af3cb33e0387f4cd14cef0ef59efafcfc /gcc/c-semantics.c | |
parent | 98c1202033333a3c6ce42b42102f9526633265c9 (diff) | |
download | gcc-d17251207d3e29ea9c232fb839e753d42239f083.tar.gz |
./:
* c-decl.c (add_stmt): Add C frontend specific version.
(stmts_are_full_exprs_p): Remove.
* c-common.h (STMT_IS_FULL_EXPR_P): Remove.
(stmts_are_full_exprs_p): Don't declare.
* c-semantics.c (add_stmt): Remove.
cp/:
* semantics.c (add_stmt): Add C++ frontend specific version.
* cp-tree.h (STMT_IS_FULL_EXPR_P): Define.
(stmts_are_full_exprs_p): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100289 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index f7757c6ff82..d2f9650a957 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -101,33 +101,6 @@ pop_stmt_list (tree t) return t; } -/* T is a statement. Add it to the statement-tree. */ - -tree -add_stmt (tree t) -{ - enum tree_code code = TREE_CODE (t); - - if (EXPR_P (t) && code != LABEL_EXPR) - { - if (!EXPR_HAS_LOCATION (t)) - SET_EXPR_LOCATION (t, input_location); - - /* When we expand a statement-tree, we must know whether or not the - statements are full-expressions. We record that fact here. */ - STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p (); - } - - if (code == LABEL_EXPR || code == CASE_LABEL_EXPR) - STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1; - - /* Add T to the statement-tree. Non-side-effect statements need to be - recorded during statement expressions. */ - append_to_statement_list_force (t, &cur_stmt_list); - - return t; -} - /* Build a generic statement based on the given type of node and arguments. Similar to `build_nt', except that we set EXPR_LOCATION to be the current source location. */ |