aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-dump.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-06-16 11:21:20 -0700
committerRichard Henderson <rth@gcc.gnu.org>2004-06-16 11:21:20 -0700
commit9e14e18fd124e651f079728315e40a16288863b6 (patch)
treee52131b3bd23ac10dfbc97741cf058791e88679f /gcc/c-dump.c
parent2f52c5316a90890e8185408429aca0dd331f9728 (diff)
downloadgcc-9e14e18fd124e651f079728315e40a16288863b6.zip
gcc-9e14e18fd124e651f079728315e40a16288863b6.tar.gz
gcc-9e14e18fd124e651f079728315e40a16288863b6.tar.bz2
c-common.def (GOTO_STMT, LABEL_STMT): Remove.
* c-common.def (GOTO_STMT, LABEL_STMT): Remove. * c-common.c (c_add_case_label): Use LABEL_EXPR. * c-common.h (GOTO_FAKE_P, LABEL_STMT_LABEL): Remove. (c_common_stmt_codes): Remove GOTO_STMT, LABEL_STMT. * c-dump.c (c_dump_tree): Likewise. * c-gimplify.c (c_gimplify_stmt): Likewise. * c-pretty-print.c (pp_c_statement): Likewise. * c-parse.in (stmt): Use GOTO_EXPR. (label): Use LABEL_EXPR. * c-semantics.c (build_stmt): Set TREE_TYPE to void. * tree-inline.c (copy_body_r): Don't build empty BLOCKs. cp/ * decl.c (finish_destructor_body): Use LABEL_EXPR. * parser.c (cp_parser_statement): Update commentary. * pt.c (tsubst_expr): Use LABEL_EXPR, GOTO_EXPR. * semantics.c (finish_goto_stmt, finish_label_stmt): Likewise. * tree.c (mark_local_for_remap_r): Likewise. From-SVN: r83255
Diffstat (limited to 'gcc/c-dump.c')
-rw-r--r--gcc/c-dump.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/c-dump.c b/gcc/c-dump.c
index 3d2004e..b0790ef 100644
--- a/gcc/c-dump.c
+++ b/gcc/c-dump.c
@@ -129,12 +129,6 @@ c_dump_tree (void *dump_info, tree t)
dump_next_stmt (di, t);
break;
- case GOTO_STMT:
- dump_stmt (di, t);
- dump_child ("dest", GOTO_DESTINATION (t));
- dump_next_stmt (di, t);
- break;
-
case IF_STMT:
dump_stmt (di, t);
dump_child ("cond", IF_COND (t));
@@ -143,12 +137,6 @@ c_dump_tree (void *dump_info, tree t)
dump_next_stmt (di, t);
break;
- case LABEL_STMT:
- dump_stmt (di, t);
- dump_child ("labl", LABEL_STMT_LABEL (t));
- dump_next_stmt (di, t);
- break;
-
case RETURN_STMT:
dump_stmt (di, t);
dump_child ("expr", RETURN_STMT_EXPR (t));