diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-20 22:58:28 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-04-20 22:58:28 +0000 |
commit | b39b80844883d0de4d19d90c35f11d78887280fe (patch) | |
tree | 0a33124dc762c4ee57d2b231808b74633dac37de /gcc/c-common.h | |
parent | 3bd417a700334135c711990366ffef1e2fc8630b (diff) | |
download | gcc-b39b80844883d0de4d19d90c35f11d78887280fe.zip gcc-b39b80844883d0de4d19d90c35f11d78887280fe.tar.gz gcc-b39b80844883d0de4d19d90c35f11d78887280fe.tar.bz2 |
c-common.h, [...]: Rename genrtl_decl_cleanup to genrtl_cleanup_stmt.
* 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.
Co-Authored-By: Zack Weinberg <zack@codesourcery.com>
From-SVN: r65869
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 432b351..bdea555 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)); |