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 /gcc/function.c | |
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
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |