From 47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390 Mon Sep 17 00:00:00 2001 From: Pranil Dey Date: Sat, 21 Sep 2024 03:13:43 +0530 Subject: [PATCH] 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 *); --- 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 *); 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); -- 2.47.2