diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-05-11 06:38:48 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-05-11 06:38:48 +0000 |
commit | 15b732b28893897ac585cf62e2646f001a22531f (patch) | |
tree | 1a696e8ab4e8b4b64edcb8b6dc6f47202bb5ddae /gcc/c-tree.h | |
parent | 8e93d44655a8a0cee4a687ac973a54d847e4924b (diff) | |
download | gcc-15b732b28893897ac585cf62e2646f001a22531f.zip gcc-15b732b28893897ac585cf62e2646f001a22531f.tar.gz gcc-15b732b28893897ac585cf62e2646f001a22531f.tar.bz2 |
c-common.c (finish_label_expr): New function, lifted from from cp/semantics.c.
* c-common.c (finish_label_expr): New function, lifted from
from cp/semantics.c.
* c-common.h (finish_label_expr, lookup_label): New prototypes.
* c-parse.in: Move 3 blocks of parser code into new functions.
* c-typeck.c (simple_asm_stmt, c_cast_expr): New functions.
* c-tree.h (simple_asm_stmt, c_cast_expr): New prototypes.
(lookup_label): Remove.
From-SVN: r41959
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index 16ab7ad..543a310 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -187,7 +187,6 @@ extern void implicit_decl_warning PARAMS ((tree)); extern int in_parm_level_p PARAMS ((void)); extern void keep_next_level PARAMS ((void)); extern int kept_level_p PARAMS ((void)); -extern tree lookup_label PARAMS ((tree)); extern tree lookup_name PARAMS ((tree)); extern tree lookup_name_current_level PARAMS ((tree)); extern tree lookup_name_current_level_global PARAMS ((tree)); @@ -233,7 +232,8 @@ extern tree parser_build_binary_op PARAMS ((enum tree_code, extern void readonly_warning PARAMS ((tree, const char *)); extern tree build_conditional_expr PARAMS ((tree, tree, tree)); extern tree build_compound_expr PARAMS ((tree)); -extern tree build_c_cast PARAMS ((tree, tree)); +extern tree c_cast_expr PARAMS ((tree, tree)); +extern tree build_c_cast PARAMS ((tree, tree)); extern tree build_modify_expr PARAMS ((tree, enum tree_code, tree)); extern void store_init_value PARAMS ((tree, tree)); @@ -251,6 +251,7 @@ extern void pedwarn_c99 PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1; extern tree c_start_case PARAMS ((tree)); extern void c_finish_case PARAMS ((void)); +extern tree simple_asm_stmt PARAMS ((tree)); extern tree build_asm_stmt PARAMS ((tree, tree, tree, tree, tree)); |