cp-tree.h (finish_cleanup_try_block): New function.

* cp-tree.h (finish_cleanup_try_block): New function.
	* semantics.c (finish_cleanup_try_block): Add comment.

From-SVN: r29264
This commit is contained in:
Mark Mitchell 1999-09-10 09:30:57 +00:00
parent 62409b397b
commit efa8eda3b8
2 changed files with 4 additions and 0 deletions

View File

@ -3609,6 +3609,7 @@ extern void finish_handler_sequence PROTO((tree));
extern tree begin_function_try_block PROTO((void));
extern void finish_function_try_block PROTO((tree));
extern void finish_function_handler_sequence PROTO((tree));
extern void finish_cleanup_try_block PROTO((tree));
extern tree begin_handler PROTO((void));
extern void start_handler_parms PROTO((tree, tree));
extern void finish_handler_parms PROTO((tree));

View File

@ -674,6 +674,9 @@ finish_try_block (try_block)
expand_start_all_catch ();
}
/* Finish the body of a cleanup try-block, which may be given by
TRY_BLOCK. */
void
finish_cleanup_try_block (try_block)
tree try_block;