summaryrefslogtreecommitdiff
path: root/gcc/cp/method.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2009-08-19 17:27:48 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2009-08-19 17:27:48 +0200
commitdc0c6451cd5551fe2f1cac817acf62e71ab73423 (patch)
treeab9cb60c984e206b00c2a68af48c934ec209f92f /gcc/cp/method.c
parent9302a061421dfbd63626da0559bc65a3c2f87ce4 (diff)
downloadgcc-dc0c6451cd5551fe2f1cac817acf62e71ab73423.tar.gz
method.c (use_thunk): Call free_after_compilation after assemble_end_function.
* method.c (use_thunk): Call free_after_compilation after assemble_end_function. * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Don't call free_after_compilation. * config/score/score7.c (score7_output_mi_thunk): Likewise. * config/score/score3.c (score3_output_mi_thunk): Likewise. * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise. * config/mips/mips.c (mips_output_mi_thunk): Likewise. * config/sh/sh.c (sh_output_mi_thunk): Likewise. * config/m68k/m68k.c (m68k_output_mi_thunk): Likewise. * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise. From-SVN: r150938
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r--gcc/cp/method.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c
index c1da08b690f..6950c2d8d57 100644
--- a/gcc/cp/method.c
+++ b/gcc/cp/method.c
@@ -450,6 +450,7 @@ use_thunk (tree thunk_fndecl, bool emit_p)
assemble_end_function (thunk_fndecl, fnname);
init_insn_lengths ();
+ free_after_compilation (cfun);
current_function_decl = 0;
set_cfun (NULL);
TREE_ASM_WRITTEN (thunk_fndecl) = 1;