From: Jeff Law Date: Tue, 30 Jun 1998 22:21:11 +0000 (-0600) Subject: jump.c (jump_optimize): Show that the jump chain is not valid when not optimizing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=81fc4f5cea91444340fdfb884cd6cd649fa382d3;p=gcc.git 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 --- diff --git a/gcc/jump.c b/gcc/jump.c index 6c38de8e662..50a69c59fc0 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; }