aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-06-30 16:21:11 -0600
committerJeff Law <law@gcc.gnu.org>1998-06-30 16:21:11 -0600
commit81fc4f5cea91444340fdfb884cd6cd649fa382d3 (patch)
tree438359b0439c95c32b7bf2da7d497121b273d314 /gcc
parent20b204401222d0d7a10a932e214670ba3c91b225 (diff)
downloadgcc-81fc4f5cea91444340fdfb884cd6cd649fa382d3.zip
gcc-81fc4f5cea91444340fdfb884cd6cd649fa382d3.tar.gz
gcc-81fc4f5cea91444340fdfb884cd6cd649fa382d3.tar.bz2
jump.c (jump_optimize): Show that the jump chain is not valid when not optimizing.
* jump.c (jump_optimize): Show that the jump chain is not valid when not optimizing. Opps. Helps to actually commit the file you really wanted to change :-) From-SVN: r20852
Diffstat (limited to 'gcc')
-rw-r--r--gcc/jump.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index 6c38de8..50a69c5 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -300,6 +300,9 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
/* Zero the "deleted" flag of all the "deleted" insns. */
for (insn = f; insn; insn = NEXT_INSN (insn))
INSN_DELETED_P (insn) = 0;
+
+ /* Show that the jump chain is not valid. */
+ jump_chain = 0;
return;
}