diff options
author | Richard Henderson <rth@redhat.com> | 2004-06-16 13:23:02 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-06-16 13:23:02 -0700 |
commit | e130a54b78b1f9b096a5ab1b98debfb263e16663 (patch) | |
tree | 6cad84a65bce84ea2e0619cc63bbdd0ee3caef9c /gcc/c-common.h | |
parent | 9e14e18fd124e651f079728315e40a16288863b6 (diff) | |
download | gcc-e130a54b78b1f9b096a5ab1b98debfb263e16663.zip gcc-e130a54b78b1f9b096a5ab1b98debfb263e16663.tar.gz gcc-e130a54b78b1f9b096a5ab1b98debfb263e16663.tar.bz2 |
c-common.def (ASM_STMT): Remove.
* 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.
From-SVN: r83260
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index aa2b06f..6dbb516 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -30,7 +30,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 0: TREE_NEGATED_INT (in INTEGER_CST). IDENTIFIER_MARKED (used by search routines). DECL_PRETTY_FUNCTION_P (in VAR_DECL) - ASM_INPUT_P (in ASM_STMT) STMT_EXPR_NO_SCOPE (in STMT_EXPR) 1: C_DECLARED_LABEL_FLAG (in LABEL_DECL) STMT_IS_FULL_EXPR_P (in _STMT) @@ -1009,7 +1008,7 @@ enum c_tree_code { DECL_STMT, IF_STMT, FOR_STMT, \ WHILE_STMT, DO_STMT, RETURN_STMT, \ BREAK_STMT, CONTINUE_STMT, \ - SWITCH_STMT, ASM_STMT, CASE_LABEL + SWITCH_STMT, CASE_LABEL /* TRUE if a code represents a statement. The front end init langhook should take care of initialization of this array. */ |