Commit fbf83349 by Jeffrey A Law Committed by Jeff Law

* dce.c (eliminate_dead_code): Fix formatting glitch.

From-SVN: r43447
parent b2af8e32
Mon Jun 18 12:50:49 2001 Jeffrey A Law (law@cygnus.com)
* dce.c (eliminate_dead_code): Fix formatting glitch.
2001-06-18 Jason Merrill <jason_merrill@redhat.com>
* c-common.h (RETURN_NULLIFIED_P): New macro.
......
......@@ -544,11 +544,12 @@ eliminate_dead_code ()
(cdbte, current_instruction, edge_number,
{
rtx jump_insn = (INDEX_EDGE_PRED_BB (el, edge_number))->end;
if (GET_CODE (jump_insn) == JUMP_INSN &&
UNNECESSARY_P (jump_insn)) {
RESURRECT_INSN (jump_insn);
VARRAY_PUSH_RTX (unprocessed_instructions, jump_insn);
}
if (GET_CODE (jump_insn) == JUMP_INSN
&& UNNECESSARY_P (jump_insn))
{
RESURRECT_INSN (jump_insn);
VARRAY_PUSH_RTX (unprocessed_instructions, jump_insn);
}
});
/* Propagate through the operands. */
......
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