From: Pranil Dey Date: Fri, 20 Sep 2024 21:43:43 +0000 (+0530) Subject: Added the previous functions to the tree-eh.h file X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390;p=thirdparty%2Fgcc.git Added the previous functions to the tree-eh.h file Functions added: 1. void extract_types_for_resx (gimple *, vec *); 2. void extract_fun_resx_types (function *); --- diff --git a/gcc/tree-eh.h b/gcc/tree-eh.h index f3b2c16ed77e..ea5cefc9fd29 100644 --- a/gcc/tree-eh.h +++ b/gcc/tree-eh.h @@ -43,6 +43,8 @@ extern bool tree_could_trap_p (tree); extern tree rewrite_to_non_trapping_overflow (tree); extern void extract_exception_types_for_call (gcall *, vec *); extern bool stmt_throw_types (function *, gimple *, vec *); +extern void extract_types_for_resx (gimple *, vec *); +extern void extract_fun_resx_types (function *); extern bool stmt_could_throw_p (function *, gimple *); extern bool stmt_unremovable_because_of_non_call_eh_p (function *, gimple *); extern bool tree_could_throw_p (tree);