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/score | |
parent | 9302a061421dfbd63626da0559bc65a3c2f87ce4 (diff) | |
download | gcc-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/config/score')
-rw-r--r-- | gcc/config/score/score3.c | 1 | ||||
-rw-r--r-- | gcc/config/score/score7.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/gcc/config/score/score3.c b/gcc/config/score/score3.c index 385620d33d6..d27d1f9f764 100644 --- a/gcc/config/score/score3.c +++ b/gcc/config/score/score3.c @@ -380,7 +380,6 @@ score3_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. */ diff --git a/gcc/config/score/score7.c b/gcc/config/score/score7.c index 368ac03a3ba..4ba3dce43a1 100644 --- a/gcc/config/score/score7.c +++ b/gcc/config/score/score7.c @@ -379,7 +379,6 @@ score7_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. */ |