diff options
author | Pranil Dey <mkdeyp@gmail.com> | 2024-09-21 03:13:43 +0530 |
---|---|---|
committer | Pranil Dey <mkdeyp@gmail.com> | 2024-10-01 09:48:04 +0530 |
commit | 47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390 (patch) | |
tree | 4b7a80716aa9384de6e83d5d356fdfaf3c10a5ce | |
parent | d1a84d379d65c8d11a1f81e54f41d98cbce03cd7 (diff) | |
download | gcc-47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390.zip gcc-47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390.tar.gz gcc-47c2d0f6e02b3aed9f0cdbb27ae62bff4e707390.tar.bz2 |
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 *);
-rw-r--r-- | gcc/tree-eh.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree-eh.h b/gcc/tree-eh.h index f3b2c16..ea5cefc 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); |