summaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorkraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4>2002-06-19 18:48:28 +0000
committerkraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4>2002-06-19 18:48:28 +0000
commit60589e7b43394eb0084168bb568865afd4887da6 (patch)
tree0ff6a0549152f347d77a354fd18fe7675804913d /gcc/except.c
parentb3167a654ad01c827d5d018facebc2a47220503b (diff)
downloadgcc-60589e7b43394eb0084168bb568865afd4887da6.tar.gz
* except.c (ehl_free): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54794 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/except.c b/gcc/except.c
index 65ba6c5ac50..bf4d8fb3170 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -305,7 +305,6 @@ static void sjlj_build_landing_pads PARAMS ((void));
static hashval_t ehl_hash PARAMS ((const PTR));
static int ehl_eq PARAMS ((const PTR,
const PTR));
-static void ehl_free PARAMS ((PTR));
static void add_ehl_entry PARAMS ((rtx,
struct eh_region *));
static void remove_exception_handler_label PARAMS ((rtx));
@@ -1186,14 +1185,6 @@ add_ehl_entry (label, region)
*slot = entry;
}
-static void
-ehl_free (pentry)
- PTR pentry;
-{
- struct ehl_map_entry *entry = (struct ehl_map_entry *)pentry;
- LABEL_PRESERVE_P (entry->label) = 0;
-}
-
void
find_exception_handler_labels ()
{