diff options
author | Clinton Popetz <cpopetz@cygnus.com> | 2000-02-10 14:16:33 +0000 |
---|---|---|
committer | Clinton Popetz <cpopetz@gcc.gnu.org> | 2000-02-10 09:16:33 -0500 |
commit | 98b7bb3848a6e56a9231c51af237e11e7c512eb0 (patch) | |
tree | 34252857ff490395be4cd007fdf73b9ad88aa66c | |
parent | 9e4cc72218d010fc89002ddc474350689b6f3d69 (diff) | |
download | gcc-98b7bb3848a6e56a9231c51af237e11e7c512eb0.zip gcc-98b7bb3848a6e56a9231c51af237e11e7c512eb0.tar.gz gcc-98b7bb3848a6e56a9231c51af237e11e7c512eb0.tar.bz2 |
function.c (thread_prologue_and_epilogue_insns): Uncomment last change.
* function.c (thread_prologue_and_epilogue_insns): Uncomment
last change.
From-SVN: r31890
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/function.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a7bbcf3..e0e441f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-02-09 Clinton Popetz <cpopetz@cygnus.com> + * function.c (thread_prologue_and_epilogue_insns): Uncomment + last change. + 2000-02-09 Richard Henderson <rth@cygnus.com> * jump.c (delete_insn): Don't delete user labels at -O0. diff --git a/gcc/function.c b/gcc/function.c index f9d2788..9f96031 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6731,8 +6731,8 @@ thread_prologue_and_epilogue_insns (f) /* If this block has only one successor, it both jumps and falls through to the fallthru block, so we can't delete the edge. */ - /*if (bb->succ->succ_next == NULL) - continue;*/ + if (bb->succ->succ_next == NULL) + continue; } else continue; |