diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-26 22:43:59 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-26 22:43:59 +0000 |
commit | e3b14ee48763a56a836124231337d108b068ee54 (patch) | |
tree | 38a179753505f46e91e5a5a07791bd37c0678b7f | |
parent | 02ddd4c0408d678a216bde8231e93a5b6f8e0d47 (diff) | |
download | gcc-e3b14ee48763a56a836124231337d108b068ee54.tar.gz |
* jump.c (jump_optimize_1): Fix typo in elide optimizations
for minimal jump pass test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32755 138bc75d-0d04-0410-961f-82ee72b054a4
-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 99368f25c61..26812e1522a 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 diff --git a/gcc/jump.c b/gcc/jump.c index 63cde04483e..18303e6eea8 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -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, |