aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-06-16 18:06:04 -0700
committerRichard Henderson <rth@gcc.gnu.org>2004-06-16 18:06:04 -0700
commit9e51cf9da473db64da0af8587a27dab945890990 (patch)
tree74b8a22c43fc02f5e1a6607ab2729a5f19ac2536 /gcc/c-tree.h
parent902fd62cebfcdbf91caf2377cb0db0ae577cbbfd (diff)
downloadgcc-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-tree.h')
-rw-r--r--gcc/c-tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index 031883e..a3f6ad1 100644
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -256,7 +256,7 @@ extern tree c_convert_parm_for_inlining (tree, tree, tree, int);
extern int c_types_compatible_p (tree, tree);
extern tree c_begin_compound_stmt (bool);
extern tree c_end_compound_stmt (tree, bool);
-extern tree c_begin_if_stmt (void);
+extern void c_begin_if_stmt (void);
extern void c_finish_if_cond (tree, int, int);
extern void c_finish_then (tree);
extern void c_begin_else (int);