diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-08-19 17:27:48 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2009-08-19 17:27:48 +0200 |
commit | dc0c6451cd5551fe2f1cac817acf62e71ab73423 (patch) | |
tree | ab9cb60c984e206b00c2a68af48c934ec209f92f /gcc/config/mips | |
parent | 9302a061421dfbd63626da0559bc65a3c2f87ce4 (diff) | |
download | gcc-dc0c6451cd5551fe2f1cac817acf62e71ab73423.zip gcc-dc0c6451cd5551fe2f1cac817acf62e71ab73423.tar.gz gcc-dc0c6451cd5551fe2f1cac817acf62e71ab73423.tar.bz2 |
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/config/mips')
-rw-r--r-- | gcc/config/mips/mips.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 572d6e7..04a1f0e 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -13942,7 +13942,6 @@ mips_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED, final_start_function (insn, file, 1); final (insn, file, 1); final_end_function (); - free_after_compilation (cfun); /* Clean up the vars set above. Note that final_end_function resets the global pointer for us. */ |