From 226c2452e8d93ba717951c2a341671e05f2e0980 Mon Sep 17 00:00:00 2001 From: rth Date: Wed, 16 Jun 2004 20:23:02 +0000 Subject: * c-common.def (ASM_STMT): Remove. * c-common.h (c_common_stmt_codes): Remove ASM_STMT. * c-dump.c (c_dump_tree): Likewise. * c-gimplify.c (c_gimplify_stmt): Likewise. * c-pretty-print.c (pp_c_statement): Likewise. * c-typeck.c (build_asm_expr): Use ASM_EXPR. * tree.h: Fix commentary. cp/ * parser.c (cp_parser_asm_definition): Update commentary. * pt.c (tsubst_expr): Use ASM_EXPR. * semantics.c (finish_asm_stmt): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83260 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-dump.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'gcc/c-dump.c') diff --git a/gcc/c-dump.c b/gcc/c-dump.c index b0790efa209..db03dfb566b 100644 --- a/gcc/c-dump.c +++ b/gcc/c-dump.c @@ -63,17 +63,6 @@ c_dump_tree (void *dump_info, tree t) dump_string (di, "bitfield"); break; - case ASM_STMT: - dump_stmt (di, t); - if (ASM_VOLATILE_P (t)) - dump_string (di, "volatile"); - dump_child ("strg", ASM_STRING (t)); - dump_child ("outs", ASM_OUTPUTS (t)); - dump_child ("ins", ASM_INPUTS (t)); - dump_child ("clbr", ASM_CLOBBERS (t)); - dump_next_stmt (di, t); - break; - case BREAK_STMT: case CONTINUE_STMT: dump_stmt (di, t); -- cgit v1.2.1