OSDN Git Service

* cp-tree.h (finish_cleanup_try_block): New function.
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 10 Sep 1999 09:30:57 +0000 (09:30 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 10 Sep 1999 09:30:57 +0000 (09:30 +0000)
* semantics.c (finish_cleanup_try_block): Add comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29264 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/cp-tree.h
gcc/cp/semantics.c

index 9be527e..79eae1a 100644 (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));
index d2f6969..cb89c8c 100644 (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;