diff options
author | Jan Hubicka <jh@suse.cz> | 2008-09-11 14:31:40 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2008-09-11 12:31:40 +0000 |
commit | 825b2fe7a8e44594639db3d40253bd41380e05dc (patch) | |
tree | 296c5e6ccfe4c678c2b699ec0b3231ebade31b29 /gcc/function.c | |
parent | 11e0edad1f0ad67099daee3275ae095107352f9a (diff) | |
download | gcc-825b2fe7a8e44594639db3d40253bd41380e05dc.zip gcc-825b2fe7a8e44594639db3d40253bd41380e05dc.tar.gz gcc-825b2fe7a8e44594639db3d40253bd41380e05dc.tar.bz2 |
function.c (free_after_compilation): Call insn_locators_free.
* function.c (free_after_compilation): Call insn_locators_free.
* cfglayout.c (insn_locators_free): New function.
* rtl.h (insn_locators_free): Declare.
From-SVN: r140279
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index 7cff900..412e6fa 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -286,6 +286,7 @@ free_after_compilation (struct function *f) f->cfg = NULL; regno_reg_rtx = NULL; + insn_locators_free (); } /* Return size needed for stack frame based on slots so far allocated. |