diff options
author | Richard Henderson <rth@redhat.com> | 2004-06-16 18:06:04 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-06-16 18:06:04 -0700 |
commit | 9e51cf9da473db64da0af8587a27dab945890990 (patch) | |
tree | 74b8a22c43fc02f5e1a6607ab2729a5f19ac2536 /gcc/c-common.h | |
parent | 902fd62cebfcdbf91caf2377cb0db0ae577cbbfd (diff) | |
download | gcc-9e51cf9da473db64da0af8587a27dab945890990.zip gcc-9e51cf9da473db64da0af8587a27dab945890990.tar.gz gcc-9e51cf9da473db64da0af8587a27dab945890990.tar.bz2 |
c-common.h (c_begin_if_stmt, [...]): Remove decls.
* c-common.h (c_begin_if_stmt, c_begin_while_stmt,
c_finish_while_stmt_cond): Remove decls.
* c-parse.in (if_prefix): Don't save c_begin_if_stmt result.
* c-typeck.c (c_begin_if_stmt): Return void.
(c_begin_else): Tidy. Save stmt_count.
* c-tree.h (c_begin_if_stmt): Update decl.
* objc/objc-act.c (objc_build_try_enter_fragment,
objc_build_extract_fragment, objc_build_try_epilogue,
objc_build_catch_stmt, objc_build_catch_epilogue,
objc_build_finally_prologue, objc_build_finally_epilogue): Update
for if builder function changes.
From-SVN: r83280
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 740825c..3e15d2b 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -300,9 +300,6 @@ extern void push_cleanup (tree, tree, bool); extern tree walk_stmt_tree (tree *, walk_tree_fn, void *); extern void prep_stmt (tree); -extern tree c_begin_if_stmt (void); -extern tree c_begin_while_stmt (void); -extern void c_finish_while_stmt_cond (tree, tree); extern int c_expand_decl (tree); extern int field_decl_cmp (const void *, const void *); |