]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cp-tree.h (finish_cleanup_try_block): New function.
authorMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 10 Sep 1999 09:30:57 +0000 (09:30 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 10 Sep 1999 09:30:57 +0000 (09:30 +0000)
* cp-tree.h (finish_cleanup_try_block): New function.
* semantics.c (finish_cleanup_try_block): Add comment.

From-SVN: r29264

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

index 9be527edb5a45d48c1e03813df90821f66fb71ad..79eae1a6b7ab42dc785561a0ee325ee8192b3fb2 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 d2f6969bc7b701ae03c2eb5fbcde68380f152b22..cb89c8c2fa898c3e67eaf77ba46b96199a7fbe43 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;