diff options
author | Andrew MacLeod <amacleod@cygnus.com> | 1998-06-09 13:28:26 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1998-06-09 13:28:26 +0000 |
commit | 0d3453dfb69f5c4d090cd03a85b6595f3e995743 (patch) | |
tree | 812a5e7bcb5c0cb69417d69ff0d7b7245fc40a0e /gcc/except.h | |
parent | 3398f47f04de7dd2154fd8565c45d815e173975e (diff) | |
download | gcc-0d3453dfb69f5c4d090cd03a85b6595f3e995743.zip gcc-0d3453dfb69f5c4d090cd03a85b6595f3e995743.tar.gz gcc-0d3453dfb69f5c4d090cd03a85b6595f3e995743.tar.bz2 |
Minor tweaks.
* except.c (expand_start_catch): Rename to start_catch_handler.
(expand_end_catch): Delete function.
(expand_end_all_catch): Remove catch status that expand_end_catch
use to do.
* except.h (expand_start_catch): Rename prototype.
(expand_end_catch): Delete prototype.
* semantics.c (finish_try_block): Rename expand_start_catch, and delete
expand_end_catch.
* parse.y (function_try_block): Rename expand_start_catch, and delete
expand_end_catch.
* except.c (expand_end_eh_spec): Rename expand_start_catch, and delete
expand_end_catch.
From-SVN: r20379
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/except.h b/gcc/except.h index 9198e41..56b5cb9 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -228,13 +228,9 @@ extern void add_eh_table_entry PROTO((int n)); /* Start a catch clause, triggered by runtime value paramter. */ #ifdef TREE_CODE -extern void expand_start_catch PROTO((tree)); +extern void start_catch_handler PROTO((tree)); #endif -/* End a catch clause. */ - -extern void expand_end_catch PROTO((void)); - /* Returns a non-zero value if we need to output an exception table. */ extern int exception_table_p PROTO((void)); |