diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-20 22:58:28 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-20 22:58:28 +0000 |
commit | 3895b6b1b5acea18046207df5e849bdbd54dd4c7 (patch) | |
tree | 0a33124dc762c4ee57d2b231808b74633dac37de /gcc/c-common.h | |
parent | 69563924a00a8673d7dc5cd621d1eb3fcfdbc21b (diff) | |
download | ppe42-gcc-3895b6b1b5acea18046207df5e849bdbd54dd4c7.tar.gz ppe42-gcc-3895b6b1b5acea18046207df5e849bdbd54dd4c7.zip |
* c-common.h, c-semantics.c: Rename genrtl_decl_cleanup to
genrtl_cleanup_stmt. Correct comment at head of
genrtl_cleanup_stmt (no such thing as a DECL_CLEANUP).
* stmt.c (struct nesting): Kill n_function_calls.
(expand_start_bindings): Don't set
thisblock->data.block.n_function_calls.
(expand_end_bindings): Compare function_call_count against 0.
(expand_cleanups): Kill DONT_DO argument; all callers passed
NULL_TREE. All callers updated to match.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65869 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 432b351da50..bdea5559b73 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -1191,7 +1191,7 @@ extern void genrtl_compound_stmt PARAMS ((tree)); extern void genrtl_asm_stmt PARAMS ((tree, tree, tree, tree, tree, int)); -extern void genrtl_decl_cleanup PARAMS ((tree)); +extern void genrtl_cleanup_stmt PARAMS ((tree)); extern int stmts_are_full_exprs_p PARAMS ((void)); extern int anon_aggr_type_p PARAMS ((tree)); |