diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/jump.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 99368f2..26812e1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-03-26 Jan Hubicka <jh@suse.cz> + + * jump.c (jump_optimize_1): Fix typo in elide optimizations + for minimal jump pass test. + 2000-03-26 Mark Mitchell <mark@codesourcery.com> * integrate.c (function_cannot_inline_p): Do inline functions that @@ -342,7 +342,7 @@ jump_optimize_1 (f, cross_jump, noop_moves, after_regscan, if (nlabel != JUMP_LABEL (insn)) changed |= redirect_jump (insn, nlabel); - if (! optimize || ! minimal) + if (! optimize || minimal) continue; /* If a dispatch table always goes to the same place, |
