diff options
-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; |