summaryrefslogtreecommitdiff
path: root/gcc/except.h
diff options
context:
space:
mode:
authoramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-09 13:28:26 +0000
committeramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-09 13:28:26 +0000
commitc50af1d9f515139035e3ffe1ee46abffcfbd8c6a (patch)
tree812a5e7bcb5c0cb69417d69ff0d7b7245fc40a0e /gcc/except.h
parent11c9a2272b98c620bbc0b085f3b73169d3283d53 (diff)
downloadgcc-c50af1d9f515139035e3ffe1ee46abffcfbd8c6a.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20379 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.h')
-rw-r--r--gcc/except.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/except.h b/gcc/except.h
index 9198e41a37e..56b5cb91de5 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));