https://gcc.gnu.org/g:47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390
commit 47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390 Author: Pranil Dey <mkd...@gmail.com> Date: Sat Sep 21 03:13:43 2024 +0530 Added the previous functions to the tree-eh.h file Functions added: 1. void extract_types_for_resx (gimple *, vec<tree> *); 2. void extract_fun_resx_types (function *); Diff: --- gcc/tree-eh.h | 2 ++ 1 file changed, 2 insertions(+) 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<tree> *); extern bool stmt_throw_types (function *, gimple *, vec<tree> *); +extern void extract_types_for_resx (gimple *, vec<tree> *); +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);