diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-17 01:06:04 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-17 01:06:04 +0000 |
commit | b576c0c19ef82ab9855bea181227c7d27146deb3 (patch) | |
tree | 74b8a22c43fc02f5e1a6607ab2729a5f19ac2536 /gcc/c-common.h | |
parent | 59629644a9aa124933dc45159da498054eee0669 (diff) | |
download | gcc-b576c0c19ef82ab9855bea181227c7d27146deb3.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83280 138bc75d-0d04-0410-961f-82ee72b054a4
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 740825c21f7..3e15d2b9896 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 *); |