Commit 81fc4f5c by Jeff Law

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
parent 20b20440
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment