diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-21 09:22:09 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-21 09:22:09 +0000 |
commit | 66dc78fc41896ed74826fa28884cb34ee321c807 (patch) | |
tree | ac233e8f350ab030cadcf102d5a7a215501b652b /gcc/cfgexpand.c | |
parent | a839da8d49dc3b1919db103d92c9773112c5f493 (diff) | |
download | gcc-66dc78fc41896ed74826fa28884cb34ee321c807.tar.gz |
* cfgexpand.c (tree_expand_cfg): Zap the EH throw statement table
once finished.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135712 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 3e36985b3d8..69a911eac8e 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -1920,9 +1920,9 @@ tree_expand_cfg (void) /* We're done expanding trees to RTL. */ currently_expanding_to_rtl = 0; - /* Convert tree EH labels to RTL EH labels, and clean out any unreachable - EH regions. */ + /* Convert tree EH labels to RTL EH labels and zap the tree EH table. */ convert_from_eh_region_ranges (); + set_eh_throw_stmt_table (cfun, NULL); rebuild_jump_labels (get_insns ()); find_exception_handler_labels (); |