summaryrefslogtreecommitdiffstats
path: root/gcc/cp/dump.c
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-25 19:03:41 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-25 19:03:41 +0000
commit7219fab5f2729f3e4a2e67f0dbaa30b8c3af4c18 (patch)
tree04c6f7b2baf3f9d03ae1167e9d3db012d53a4e00 /gcc/cp/dump.c
parentd34440fb1399385426c75bbb66b92fc38d5980ec (diff)
downloadppe42-gcc-7219fab5f2729f3e4a2e67f0dbaa30b8c3af4c18.tar.gz
ppe42-gcc-7219fab5f2729f3e4a2e67f0dbaa30b8c3af4c18.zip
./
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98731 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/dump.c')
-rw-r--r--gcc/cp/dump.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c
index 20c7ace5e8c..6b93045e02f 100644
--- a/gcc/cp/dump.c
+++ b/gcc/cp/dump.c
@@ -459,6 +459,11 @@ cp_dump_tree (void* dump_info, tree t)
dump_child ("stmt", STMT_EXPR_STMT (t));
break;
+ case EXPR_STMT:
+ dump_stmt (di, t);
+ dump_child ("expr", EXPR_STMT_EXPR (t));
+ break;
+
default:
break;
}
OpenPOWER on IntegriCloud