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