diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-23 14:53:52 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-23 14:53:52 +0000 |
commit | 97f9b300964763a8595724b12f31ba47248bcd6f (patch) | |
tree | cef8941206cf59d529332775f97cc01e6ec63cf3 | |
parent | 05b1d95b3789622da04b05e1e4e0ba8115f0cde9 (diff) | |
download | ppe42-gcc-97f9b300964763a8595724b12f31ba47248bcd6f.tar.gz ppe42-gcc-97f9b300964763a8595724b12f31ba47248bcd6f.zip |
* reorg.c (dbr_schedule): Remove #if 0 code to call final.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96931 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/reorg.c | 11 |
2 files changed, 4 insertions, 11 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f328d013649..47f35922744 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-03-23 Ian Lance Taylor <ian@airs.com> + + * reorg.c (dbr_schedule): Remove #if 0 code to call final. + 2005-03-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> * config.gcc (alpha*-dec-osf[45]*): Remove target_cpu_default. diff --git a/gcc/reorg.c b/gcc/reorg.c index 09c8ea583c5..6d0db45a37d 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -3582,17 +3582,6 @@ dbr_schedule (rtx first, FILE *file) { rtx insn, next, epilogue_insn = 0; int i; -#if 0 - int old_flag_no_peephole = flag_no_peephole; - - /* Execute `final' once in prescan mode to delete any insns that won't be - used. Don't let final try to do any peephole optimization--it will - ruin dataflow information for this pass. */ - - flag_no_peephole = 1; - final (first, 0, NO_DEBUG, 1, 1); - flag_no_peephole = old_flag_no_peephole; -#endif /* If the current function has no insns other than the prologue and epilogue, then do not try to fill any delay slots. */ |