* dce.c (eliminate_dead_code): Fix formatting glitch.
From-SVN: r43447
This commit is contained in:
parent
b2af8e32ec
commit
fbf8334971
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
11
gcc/dce.c
11
gcc/dce.c
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user