diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2007-08-05 16:04:12 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2007-08-05 16:04:12 +0000 |
commit | 0d475361a51725490a60788243a1f785cfba4da1 (patch) | |
tree | b1eb63f779e57b66e9e082792080cffb4ebb30c1 /gcc/config/sh | |
parent | 3d97b1af3fa03940993985f5936b9748b79d2eb8 (diff) | |
download | gcc-0d475361a51725490a60788243a1f785cfba4da1.zip gcc-0d475361a51725490a60788243a1f785cfba4da1.tar.gz gcc-0d475361a51725490a60788243a1f785cfba4da1.tar.bz2 |
configure.ac: Remove --enable-checking=df from default settings.
2008-08-05 Paolo Bonzini <bonzini@gnu.org>
* configure.ac: Remove --enable-checking=df from default settings.
* tree-pass.h (TODO_df_verify): New. Shift TODO_mark_first_instance.
* df-core.c (df_finish_pass) [ENABLE_CHECKING]: Schedule verification
if the parameter is true.
(df_analyze) [!ENABLE_DF_CHECKING]: Also do verification if the
DF_VERIFY_SCHEDULED flag is true.
* df.h (enum df_changeable_flags): Add DF_VERIFY_SCHEDULED.
(df_finish_pass): Adjust prototype.
* passes.c (execute_todo): Schedule verification if TODO_df_verify is
true.
* see.c (pass_see): Add TODO_df_verify.
* loop-init.c (pass_rtl_move_loop_invariants): Add TODO_df_verify.
* global.c (rest_of_handle_global_alloc): Schedule verification
after the pass.
* local-alloc.c (rest_of_handle_local_alloc): Schedule verification
before the pass.
* function.c (pass_thread_prologue_and_epilogue): Add TODO_df_verify.
* gcse.c (rest_of_handle_gcse): Adjust call to df_finish_pass.
* loop-iv.c (iv_analysis_done): Schedule verification after the pass.
* config/sh/sh.c (sh_output_mi_thunk): Remove dead code.
* config/ia64/ia64.c (ia64_reorg): Adjust call to df_finish_pass.
* config/bfin/bfin.c (bfin_reorg): Adjust call to df_finish_pass.
From-SVN: r127225
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/sh.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index a0ce6de..290d3f0 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -10257,22 +10257,6 @@ sh_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED, final (insns, file, 1); final_end_function (); -#if 0 - if (optimize > 0) - { - /* Release all memory allocated by df. */ - if (rtl_df) - { - df_finish (rtl_df); - rtl_df = NULL; - } - - /* Release the bitmap obstacks. */ - bitmap_obstack_release (®_obstack); - bitmap_obstack_release (NULL); - } -#endif - reload_completed = 0; epilogue_completed = 0; } |